summaryrefslogtreecommitdiff
path: root/gtk2_ardour/plugin_ui.cc
diff options
context:
space:
mode:
authorNick Mainsbridge <beatroute@iprimus.com.au>2006-05-17 12:07:16 +0000
committerNick Mainsbridge <beatroute@iprimus.com.au>2006-05-17 12:07:16 +0000
commitb3b383faa5ca4e2a101314612d69b05184edc422 (patch)
tree709e456eb51260ae12b1d646c89e857e6fb997c0 /gtk2_ardour/plugin_ui.cc
parent1242d9595c198bd5cb351271002b1c910ec7864b (diff)
Remove CannotRecordNoInput signal (allowing recording without input connections), provide visual indication of phase reverse, change e.g. 'gain automation' to 'fader automation', enforce mouse button 1 use in mixer strip, make button labels more consistent in mixer strip, disable io change/record enable when disconnected from jack on mixer strip, remove duplicated signal connections and typo in audio_time_axis.cc.
git-svn-id: svn://localhost/trunk/ardour2@505 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/plugin_ui.cc')
-rw-r--r--gtk2_ardour/plugin_ui.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/gtk2_ardour/plugin_ui.cc b/gtk2_ardour/plugin_ui.cc
index 7965bd1257..5815221d66 100644
--- a/gtk2_ardour/plugin_ui.cc
+++ b/gtk2_ardour/plugin_ui.cc
@@ -354,7 +354,7 @@ PluginUI::ControlUI::ControlUI ()
{
automate_button.set_name ("PluginAutomateButton");
ARDOUR_UI::instance()->tooltips().set_tip (automate_button,
- _("automation control"));
+ _("Automation control"));
/* don't fix the height, it messes up the bar controllers */
@@ -388,16 +388,16 @@ PluginUI::automation_state_changed (ControlUI* cui)
switch (insert.get_port_automation_state (cui->port_index) & (Off|Play|Touch|Write)) {
case Off:
- cui->automate_button.set_label (_("off"));
+ cui->automate_button.set_label (_("Isolate"));
break;
case Play:
- cui->automate_button.set_label (_("play"));
+ cui->automate_button.set_label (_("Play"));
break;
case Write:
- cui->automate_button.set_label (_("write"));
+ cui->automate_button.set_label (_("Write"));
break;
case Touch:
- cui->automate_button.set_label (_("touch"));
+ cui->automate_button.set_label (_("Touch"));
break;
default:
cui->automate_button.set_label (_("???"));
@@ -631,13 +631,13 @@ PluginUI::astate_clicked (ControlUI* cui, uint32_t port)
MenuList& items (automation_menu->items());
items.clear ();
- items.push_back (MenuElem (_("off"),
+ items.push_back (MenuElem (_("Isolate"),
bind (mem_fun(*this, &PluginUI::set_automation_state), (AutoState) Off, cui)));
- items.push_back (MenuElem (_("play"),
+ items.push_back (MenuElem (_("Play"),
bind (mem_fun(*this, &PluginUI::set_automation_state), (AutoState) Play, cui)));
- items.push_back (MenuElem (_("write"),
+ items.push_back (MenuElem (_("Write"),
bind (mem_fun(*this, &PluginUI::set_automation_state), (AutoState) Write, cui)));
- items.push_back (MenuElem (_("touch"),
+ items.push_back (MenuElem (_("Touch"),
bind (mem_fun(*this, &PluginUI::set_automation_state), (AutoState) Touch, cui)));
automation_menu->popup (1, 0);