summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-05-05 14:26:04 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-05-05 14:26:04 +0000
commit21bd527ce32b66e337a41c8f89f9dc804a1dd8e9 (patch)
tree79bbd29abdfac3c979a31deb10c396ae69a42a14 /gtk2_ardour/ardour_ui_ed.cc
parent9a61a9b0bfe618ee33c08aa751fc16502e97886f (diff)
remove JACK does montioring option for OS X, because the CoreAudio backend has no monitoring capabilities
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@7062 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index 832b01cf19..bbf3dbbb43 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -575,10 +575,13 @@ ARDOUR_UI::install_actions ()
sensitive only if it makes sense.
*/
+#ifndef __APPLE__
+ /* JACK has no monitoring capabilities with the CoreAudio backend */
act = ActionManager::register_radio_action (option_actions, monitoring_group, X_("UseHardwareMonitoring"), _("JACK does monitoring"), bind (mem_fun (*this, &ARDOUR_UI::set_monitor_model), HardwareMonitoring));
if (!engine->can_request_hardware_monitoring()) {
act->set_sensitive (false);
}
+#endif
act = ActionManager::register_radio_action (option_actions, monitoring_group, X_("UseSoftwareMonitoring"), string_compose (_("%1 does monitoring"), PROGRAM_NAME).c_str(), bind (mem_fun (*this, &ARDOUR_UI::set_monitor_model), SoftwareMonitoring));
act = ActionManager::register_radio_action (option_actions, monitoring_group, X_("UseExternalMonitoring"), _("Audio Hardware does monitoring"), bind (mem_fun (*this, &ARDOUR_UI::set_monitor_model), ExternalMonitoring));