summaryrefslogtreecommitdiff
path: root/gtk2_ardour/script_selector.h
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2017-12-07 09:17:53 -0600
committerBen Loftis <ben@harrisonconsoles.com>2017-12-07 11:08:26 -0600
commitefc858dc8149f3b3456781451ef42dc69eee2d5e (patch)
treef4d121cd676dd23c950286fddd1aba52e649a105 /gtk2_ardour/script_selector.h
parent561c8eea0cfa45f0b54461b149b4c330e0bbaa3b (diff)
Drop the "Lua" in Lua Action Buttons:
Removed the term "Lua", because users were turned off by something they didn't understand. A special-case Lua script ("Shortcut") allows the user to select an arbitrary Action. The "Shortcut" script is selected by default, and in this case there is no "Type" or "Author" displayed. Action-Buttons may still trigger Lua scripts, as a secondary function.
Diffstat (limited to 'gtk2_ardour/script_selector.h')
-rw-r--r--gtk2_ardour/script_selector.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/script_selector.h b/gtk2_ardour/script_selector.h
index 54c26ee227..f8f17f5c02 100644
--- a/gtk2_ardour/script_selector.h
+++ b/gtk2_ardour/script_selector.h
@@ -34,11 +34,14 @@ private:
void setup_list ();
void refresh ();
void script_combo_changed ();
-
+ bool script_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i);
+
Gtk::Button* _add;
Gtk::ComboBoxText _script_combo;
+ Gtk::Label _type_label;
Gtk::Label _type;
+ Gtk::Label _author_label;
Gtk::Label _author;
Gtk::Label _description;