We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In text.cpp, line 376 :
auto next_char = [this, &_text]() { if (_text.size() > 1 && _select_end < static_cast<int>(_text.size())) ++_select_end; };
Where _text.size() > 1 should probably be changed to _text.size() > 0 to allow moving caret to right when there is only one character in the box.
_text.size() > 1
_text.size() > 0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In text.cpp, line 376 :
Where
_text.size() > 1
should probably be changed to_text.size() > 0
to allow moving caret to right when there is only one character in the box.The text was updated successfully, but these errors were encountered: