summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_clock.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2012-11-11 23:11:50 +0000
committerRobin Gareus <robin@gareus.org>2012-11-11 23:11:50 +0000
commit6657159ba81ec2d741cbd35bf198c61a5e30839f (patch)
tree415390ca5ecdd414121c1f4e8c9aca5d1b4ba843 /gtk2_ardour/audio_clock.cc
parent50158b8bf1ecc4be383bc591fe908527c479806e (diff)
clock width for 99999 bars (9999 allows 2h46m @ 240bpm)
git-svn-id: svn://localhost/ardour2/branches/3.0@13445 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/audio_clock.cc')
-rw-r--r--gtk2_ardour/audio_clock.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc
index b69ffa7329..c816c46857 100644
--- a/gtk2_ardour/audio_clock.cc
+++ b/gtk2_ardour/audio_clock.cc
@@ -483,7 +483,7 @@ AudioClock::on_size_request (Gtk::Requisition* req)
int ignored;
tmp->set_text ("-88:88:88:88");
tmp->get_pixel_size (_mode_width[Timecode], ignored);
- tmp->set_text (" 8888|88|8888");
+ tmp->set_text (" 88888|88|8888");
tmp->get_pixel_size (_mode_width[BBT], ignored);
tmp->set_text (" 88:88:88,888");
tmp->get_pixel_size (_mode_width[MinSec], ignored);
@@ -497,14 +497,14 @@ AudioClock::on_size_request (Gtk::Requisition* req)
not be sufficient for 24h worth of BBT
*/
- tmp->set_text (" 8888888888::,");
+ tmp->set_text (" 88888888888::,");
} else {
switch (_mode) {
case Timecode:
tmp->set_text ("-88:88:88:88");
break;
case BBT:
- tmp->set_text (" 8888|88|8888");
+ tmp->set_text (" 88888|88|8888");
break;
case MinSec:
tmp->set_text (" 88:88:88,888");