summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-03 14:34:38 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-03 14:34:38 +0100
commitc9152723208a20542b147e8a879117d6a5a76a45 (patch)
treef7d88660c33d03ff6e548ed89a3530686099863a /src
parenta6e27693613a72a36602d2abc45d71db4b6d096a (diff)
Update track labels when zooming out.
Diffstat (limited to 'src')
-rw-r--r--src/wx/timeline.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wx/timeline.cc b/src/wx/timeline.cc
index f68c98bda..667bf5f87 100644
--- a/src/wx/timeline.cc
+++ b/src/wx/timeline.cc
@@ -582,6 +582,7 @@ Timeline::right_down (wxMouseEvent& ev)
_pixels_per_second = *_pixels_per_second / 2;
_track_height = max (8, _track_height / 2);
setup_scrollbars ();
+ Refresh ();
break;
}
}