mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04:56 +01:00
Remove some never-seen tooltips (overridden by other
things). Clip output button labels to 7 characters rather than 6 to fit the English translation of monitor in (#4627). git-svn-id: svn://localhost/ardour2/branches/3.0@11340 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
bf8dbbaca7
commit
05451a80f2
1 changed files with 1 additions and 3 deletions
|
|
@ -157,12 +157,10 @@ MixerStrip::init ()
|
||||||
ARDOUR_UI::instance()->set_tip (&hide_button, _("Hide this mixer strip"));
|
ARDOUR_UI::instance()->set_tip (&hide_button, _("Hide this mixer strip"));
|
||||||
|
|
||||||
input_button.set_text (_("Input"));
|
input_button.set_text (_("Input"));
|
||||||
ARDOUR_UI::instance()->set_tip (&input_button, _("Button 1 to choose inputs from a port matrix, button 3 to select inputs from a menu"), "");
|
|
||||||
input_button.set_name ("mixer strip button");
|
input_button.set_name ("mixer strip button");
|
||||||
input_button_box.pack_start (input_button, true, true);
|
input_button_box.pack_start (input_button, true, true);
|
||||||
|
|
||||||
output_button.set_text (_("Output"));
|
output_button.set_text (_("Output"));
|
||||||
ARDOUR_UI::instance()->set_tip (&output_button, _("Button 1 to choose outputs from a port matrix, button 3 to select inputs from a menu"), "");
|
|
||||||
output_button.set_name ("mixer strip button");
|
output_button.set_name ("mixer strip button");
|
||||||
Gtkmm2ext::set_size_request_to_display_given_text (output_button, longest_label.c_str(), 4, 4);
|
Gtkmm2ext::set_size_request_to_display_given_text (output_button, longest_label.c_str(), 4, 4);
|
||||||
|
|
||||||
|
|
@ -1207,7 +1205,7 @@ MixerStrip::update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width widt
|
||||||
|
|
||||||
switch (width) {
|
switch (width) {
|
||||||
case Wide:
|
case Wide:
|
||||||
label_string = label.str().substr(0, 6);
|
label_string = label.str().substr(0, 7);
|
||||||
break;
|
break;
|
||||||
case Narrow:
|
case Narrow:
|
||||||
label_string = label.str().substr(0, 3);
|
label_string = label.str().substr(0, 3);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue