From 6053c8f54d362c3ac276a9e088de32025a1bc198 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Thu, 5 Apr 2018 13:52:30 +0200 Subject: [PATCH] Try to fix bug with CheckBox selection if cursor is in TextCtrl. --- xs/src/slic3r/GUI/Field.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xs/src/slic3r/GUI/Field.cpp b/xs/src/slic3r/GUI/Field.cpp index 36ef9098f..fee08e27e 100644 --- a/xs/src/slic3r/GUI/Field.cpp +++ b/xs/src/slic3r/GUI/Field.cpp @@ -173,7 +173,8 @@ namespace Slic3r { namespace GUI { temp->Bind(wxEVT_KILL_FOCUS, ([this, temp](wxEvent& e) { - on_kill_focus(e); +// on_kill_focus(e); + e.Skip(); temp->GetToolTip()->Enable(true); }), temp->GetId());