trigger_ui: remove fade in+out buttons; we will not be using them

This commit is contained in:
Ben Loftis 2022-01-11 12:41:08 -06:00
parent 2f9b896f06
commit 66290bfffc
2 changed files with 0 additions and 15 deletions

View File

@ -134,18 +134,6 @@ AudioTriggerPropertiesBox::AudioTriggerPropertiesBox ()
row++;
label = manage (new Gtk::Label (_("Fades:")));
label->set_alignment (1.0, 0.5);
_fade_in_enable_button.set_text (_("In"));
_fade_in_enable_button.set_name ("generic button");
_fade_out_enable_button.set_text (_("Out"));
_fade_out_enable_button.set_name ("generic button");
audio_t->attach (*label, 0, 1, row, row + 1, Gtk::FILL, Gtk::SHRINK);
audio_t->attach (_fade_in_enable_button, 1, 2, row, row + 1, Gtk::FILL, Gtk::SHRINK);
audio_t->attach (_fade_out_enable_button, 2, 3, row, row + 1, Gtk::FILL, Gtk::SHRINK);
row++;
label = manage (new Gtk::Label (_("Gain:")));
label->set_alignment (1.0, 0.5);
Gtk::Label *db_label = manage (new Gtk::Label (_("(dB)")));

View File

@ -82,9 +82,6 @@ private:
ArdourWidgets::ArdourButton _stretch_toggle;
ArdourWidgets::ArdourButton _fade_in_enable_button;
ArdourWidgets::ArdourButton _fade_out_enable_button;
ArdourWidgets::ArdourButton _stretch_selector;
};