From 8876d61d0368ef74e05ecbb2e4b841875f4570d4 Mon Sep 17 00:00:00 2001 From: YuSanka Date: Tue, 14 Nov 2023 16:48:42 +0100 Subject: [PATCH] New Spin control: KillFocus wasn't processed correct in Ramming and ConfigWizard dialogs --- src/slic3r/GUI/Widgets/SpinInput.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/slic3r/GUI/Widgets/SpinInput.cpp b/src/slic3r/GUI/Widgets/SpinInput.cpp index a012140400..0456d1a067 100644 --- a/src/slic3r/GUI/Widgets/SpinInput.cpp +++ b/src/slic3r/GUI/Widgets/SpinInput.cpp @@ -384,7 +384,7 @@ void SpinInput::onTextLostFocus(wxEvent &event) // pass to outer event.SetId(GetId()); ProcessEventLocally(event); - e.Skip(); + event.Skip(); } void SpinInput::onTextEnter(wxCommandEvent &event) @@ -581,7 +581,7 @@ void SpinInputDouble::onTextLostFocus(wxEvent &event) // pass to outer event.SetId(GetId()); ProcessEventLocally(event); - e.Skip(); + event.Skip(); } void SpinInputDouble::onTextEnter(wxCommandEvent &event)