From: Carl Hetherington Date: Tue, 11 Sep 2018 12:33:18 +0000 (+0100) Subject: Fix slider. X-Git-Tag: v2.13.49~10 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=ec95e9c3c78112c39b67f9c61595e5b29541e7e9 Fix slider. --- 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