Plenty of space for "Mute" on narrow master-bus

This commit is contained in:
Robin Gareus 2020-08-03 22:28:46 +02:00
parent 3bb374a473
commit 973d52b949
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 6 additions and 1 deletions

View File

@ -2349,7 +2349,12 @@ MixerStrip::set_button_names ()
break;
default:
mute_button->set_text (S_("Mute|M"));
if (is_master ()) {
/* master bus has no solo button, "Mute" fits in narrow mode */
mute_button->set_text (_("Mute"));
} else {
mute_button->set_text (S_("Mute|M"));
}
monitor_input_button->set_text (S_("MonitorInput|I"));
monitor_disk_button->set_text (S_("MonitorDisk|D"));
if (monitor_section_button) {