Zini
08-09-2007 14:11:17
Sometimes, when closing a window with a TextBox (TestBox having the focus) the text cursor stays on screen. Can't get it repeatable, but it happens often.
Zini
08-09-2007 14:11:17
kungfoomasta
08-09-2007 18:12:22
void TextBox::hide()
{
mTextCursor->setVisible(false);
Label::hide();
}
void TextBox::hide()
{
mTextCursor->setVisible(false);
mBackSpaceDown = false;
mLeftArrowDown = false;
mRightArrowDown = false;
mHasFocus = false;
mMouseLeftDown = false;
Label::hide();
}
Zini
08-09-2007 18:19:00