summaryrefslogtreecommitdiff
path: root/src/wx/controls.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-04-15 00:50:11 +0200
committerCarl Hetherington <cth@carlh.net>2020-04-15 00:50:11 +0200
commit3d435ad1455306fc4db9d03154e3e2dcd4ed08b8 (patch)
tree017d6fa12c2b4a4661de9a2aeda24c8f2239f694 /src/wx/controls.cc
parent5892c334c69b32901dab3c47124dfc7e72858f59 (diff)
Fix glitchy timeline slider if its update timer goes off while a seek is happening.
Diffstat (limited to 'src/wx/controls.cc')
-rw-r--r--src/wx/controls.cc2
1 files changed, 1 insertions, 1 deletions
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 ();
}