From 90e1e37c3124edb1d2cad1dc5bda02ebcb8fdb2f Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 24 Sep 2015 10:15:26 -0400 Subject: [PATCH] fix clock sizing so that it is always large enough --- gtk2_ardour/audio_clock.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gtk2_ardour/audio_clock.cc b/gtk2_ardour/audio_clock.cc index cda6c97275..c8783fb8f8 100644 --- a/gtk2_ardour/audio_clock.cc +++ b/gtk2_ardour/audio_clock.cc @@ -493,13 +493,9 @@ AudioClock::set_clock_dimensions (Gtk::Requisition& req) tmp->set_font_description (font); /* this string is the longest thing we will ever display */ - if (_mode == MinSec) - tmp->set_text (" 88:88:88,888 "); - else - tmp->set_text (" 88:88:88,88 "); + tmp->set_text (" 88:88:88,888 "); tmp->get_pixel_size (req.width, req.height); - layout_height = req.height; layout_width = req.width;