From ec95e9c3c78112c39b67f9c61595e5b29541e7e9 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 11 Sep 2018 13:33:18 +0100 Subject: [PATCH] Fix slider. --- src/wx/controls.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 96bd624ac..de0060d64 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -122,8 +122,10 @@ Controls::stopped () void Controls::position_changed () { - update_position_label (); - update_position_slider (); + if (!_slider_being_moved) { + update_position_label (); + update_position_slider (); + } } void -- 2.30.2