From c30dc045716509118ae5ac0f3ffb5f636058a972 Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Sat, 29 Aug 2020 23:31:02 +0100 Subject: [PATCH] Skip the slider event to allow the stepping to work The stepping is in a static event handler, so it is called after the dynamic handler and so the dynamic handler must allow the event to continue processing. Fixes https://gitlab.com/kicad/code/kicad/issues/5319 --- common/dialogs/panel_common_settings.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/dialogs/panel_common_settings.cpp b/common/dialogs/panel_common_settings.cpp index 2596d82107..509df82256 100644 --- a/common/dialogs/panel_common_settings.cpp +++ b/common/dialogs/panel_common_settings.cpp @@ -174,6 +174,7 @@ bool PANEL_COMMON_SETTINGS::TransferDataFromWindow() void PANEL_COMMON_SETTINGS::OnScaleSlider( wxScrollEvent& aEvent ) { m_iconScaleAuto->SetValue( false ); + aEvent.Skip(); }