From 3d435ad1455306fc4db9d03154e3e2dcd4ed08b8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 15 Apr 2020 00:50:11 +0200 Subject: Fix glitchy timeline slider if its update timer goes off while a seek is happening. --- src/wx/controls.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wx/controls.cc') diff --git a/src/wx/controls.cc b/src/wx/controls.cc index 92103637c..ec6d4ff4c 100644 --- a/src/wx/controls.cc +++ b/src/wx/controls.cc @@ -170,7 +170,7 @@ Controls::stopped () void Controls::update_position () { - if (!_slider_being_moved) { + if (!_slider_being_moved && !_viewer->pending_idle_get()) { update_position_label (); update_position_slider (); } -- cgit v1.2.3