elements icon indicating copy to clipboard operation
elements copied to clipboard

artist_port basic_text_box::key

Open johannphilippe opened this issue 4 years ago • 0 comments

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.

johannphilippe avatar Dec 23 '21 12:12 johannphilippe