From bc69330fe0dcdbca3188207670ef7851f03447fe Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 9 Oct 2018 13:17:17 +0100 Subject: [PATCH] Make sure filter text goes at the end. Some platforms select-all on focus, meaning each character would replace the pre-existing string. --- common/widgets/net_selector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/widgets/net_selector.cpp b/common/widgets/net_selector.cpp index 68088548af..b0bb792e4e 100644 --- a/common/widgets/net_selector.cpp +++ b/common/widgets/net_selector.cpp @@ -379,7 +379,7 @@ protected: if( !aEvent.ShiftDown() ) text.MakeLower(); - m_filterCtrl->WriteText( text ); + m_filterCtrl->AppendText( text ); } } }