I'm using cegui 0.8.4
Try to paste on multiline editbox, but failed. found this in MultiLineEditbox.cpp , line 744
Code: Select all
// if there is room
if (getText().length() - clipboardText.length() < d_maxTextLen)
{
This must be a typo, this " - " should be "+". i changed it, and it workd.
By the way , i'm trying to expand editbox but
Code: Select all
void handleBackspace(void);
void handleDelete(void);
.
.
.
they are all not virtual, i have to override onKeyDown