summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-01-29 20:15:06 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-01-29 20:44:43 -0600
commitd282b91d961c73d1b5bd6c5fe85d8b090daa00bd (patch)
tree2f704590762a0944274515d82037c473ecfd7201 /gtk2_ardour
parent73bafc36eab647d0cd7eaa5fa586df0a7c84a8f6 (diff)
Plugin Selector: ui tweaks.
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/plugin_selector.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index bef7aa62ba..294d0f9371 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -161,7 +161,7 @@ PluginSelector::PluginSelector (PluginManager& mgr)
_("All search terms must be matched."), Gtk::ALIGN_LEFT));
Gtk::Label* search_help_label2 = manage (new Label(
- _("Ex: \"ess dyn\" will return \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_LEFT));
+ _("Ex: \"ess dyn\" will find \"dynamic de-esser\" but not \"de-esser\"."), Gtk::ALIGN_LEFT));
search_table->attach (search_entry, 0, 3, 0, 1, FILL|EXPAND, FILL);
search_table->attach (search_clear_button, 3, 4, 0, 1, FILL, FILL);
@@ -172,7 +172,7 @@ PluginSelector::PluginSelector (PluginManager& mgr)
search_table->attach (*search_help_label2, 0, 3, 3, 4, FILL, FILL);
search_table->set_border_width (4);
- search_table->set_col_spacings (2);
+ search_table->set_col_spacings (4);
search_table->set_row_spacings (4);
Frame* search_frame = manage (new Frame);