13
0

Come to think of it, those size requests were hack to support a clock in the menu bar, which we gave up on. So remove them.

git-svn-id: svn://localhost/ardour2/branches/3.0@8867 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-02-16 02:12:01 +00:00
parent 813df53d2f
commit bdc9dc94b8
2 changed files with 0 additions and 17 deletions

View File

@ -715,8 +715,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI, public ARDOUR::SessionHandlePtr
int missing_file (ARDOUR::Session*s, std::string str, ARDOUR::DataType type);
int ambiguous_file (std::string file, std::string path, std::vector<std::string> hits);
void resize_text_widgets ();
};
#endif /* __ardour_gui_h__ */

View File

@ -513,9 +513,6 @@ ARDOUR_UI::build_menu_bar ()
// so use this instead ...
gtk_settings_set_long_property (gtk_settings_get_default(), "gtk-can-change-accels", 1, "Ardour:designers");
resize_text_widgets ();
DPIReset.connect (sigc::mem_fun (*this, &ARDOUR_UI::resize_text_widgets));
wall_clock_box.add (wall_clock_label);
wall_clock_box.set_name ("WallClock");
wall_clock_label.set_name ("WallClock");
@ -558,18 +555,6 @@ ARDOUR_UI::build_menu_bar ()
menu_bar_base.add (menu_hbox);
}
void
ARDOUR_UI::resize_text_widgets ()
{
/* Set up some size requests here to stop the menu-bar clock jumping around in full-screen mode */
set_size_request_to_display_given_text (wall_clock_label, _("99:99"), 2, 0);
set_size_request_to_display_given_text (disk_space_label, _("9999h:999999m:99999999s"), 2, 0);
set_size_request_to_display_given_text (cpu_load_label, _("DSP: 100.0%"), 2, 0);
set_size_request_to_display_given_text (buffer_load_label, _("Buffers p:100% c:100%"), 2, 0);
set_size_request_to_display_given_text (sample_rate_label, X_("384 kHz / 1000 ms"), 2, 0);
}
void
ARDOUR_UI::use_menubar_as_top_menubar ()
{