mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
gtkmm: use ALIGN_START instead of deprecated Gtk::AlignmentEnum::ALIGN_LEFT
This commit is contained in:
parent
1390743d52
commit
2aa72891f3
31 changed files with 123 additions and 123 deletions
|
|
@ -169,10 +169,10 @@ PluginSelector::PluginSelector (PluginManager& mgr)
|
|||
_search_ignore_checkbox->set_name ("pluginlist filter button");
|
||||
|
||||
Gtk::Label* search_help_label1 = manage (new Label(
|
||||
_("All search terms must be matched."), Gtk::ALIGN_LEFT));
|
||||
_("All search terms must be matched."), Gtk::ALIGN_START));
|
||||
|
||||
Gtk::Label* search_help_label2 = manage (new Label(
|
||||
_("Ex: \"ess dyn\" will find \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_LEFT));
|
||||
_("Ex: \"ess dyn\" will find \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_START));
|
||||
|
||||
search_table->attach (search_entry, 0, 3, 0, 1, FILL|EXPAND, FILL);
|
||||
search_table->attach (search_clear_button, 3, 4, 0, 1, FILL, FILL);
|
||||
|
|
@ -270,13 +270,13 @@ PluginSelector::PluginSelector (PluginManager& mgr)
|
|||
tag_reset_button->signal_clicked().connect (sigc::mem_fun (*this, &PluginSelector::tag_reset_button_clicked));
|
||||
|
||||
Gtk::Label* tagging_help_label1 = manage (new Label(
|
||||
_("Enter space-separated, one-word Tags for the selected plugin."), Gtk::ALIGN_LEFT));
|
||||
_("Enter space-separated, one-word Tags for the selected plugin."), Gtk::ALIGN_START));
|
||||
|
||||
Gtk::Label* tagging_help_label2 = manage (new Label(
|
||||
_("You can include dashes, colons or underscores in a Tag."), Gtk::ALIGN_LEFT));
|
||||
_("You can include dashes, colons or underscores in a Tag."), Gtk::ALIGN_START));
|
||||
|
||||
Gtk::Label* tagging_help_label3 = manage (new Label(
|
||||
_("Ex: \"dynamic de-esser vocal\" applies 3 Tags."), Gtk::ALIGN_LEFT));
|
||||
_("Ex: \"dynamic de-esser vocal\" applies 3 Tags."), Gtk::ALIGN_START));
|
||||
|
||||
int p = 0;
|
||||
tagging_table->attach (*tag_entry, 0, 1, p, p+1, FILL|EXPAND, FILL);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue