Make sure filter text goes at the end.

Some platforms select-all on focus, meaning each character would
replace the pre-existing string.
This commit is contained in:
Jeff Young 2018-10-09 13:17:17 +01:00
parent 246f49b8cb
commit bc69330fe0
1 changed files with 1 additions and 1 deletions

View File

@ -379,7 +379,7 @@ protected:
if( !aEvent.ShiftDown() )
text.MakeLower();
m_filterCtrl->WriteText( text );
m_filterCtrl->AppendText( text );
}
}
}