summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-08-24 22:06:37 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-08-24 22:06:37 +0000
commitda392b880dfe5e5dd450f2ecb2ef4d7afaf52932 (patch)
tree3d311a8285a0236d05cef8c37c89f65a00a76cbf /gtk2_ardour
parent6d21e901cdd92c16cfc18df689115fef73c2ec11 (diff)
add GUI config support for seamless loop option
git-svn-id: svn://localhost/ardour2/branches/3.0@7677 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/rc_option_editor.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/gtk2_ardour/rc_option_editor.cc b/gtk2_ardour/rc_option_editor.cc
index aedb1cb29d..e9e3bd5769 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -864,6 +864,14 @@ RCOptionEditor::RCOptionEditor ()
add_option (_("Transport"),
new BoolOption (
+ "seamless-loop",
+ _("Do seamless looping (not possible when slaved to MTC, JACK etc)"),
+ sigc::mem_fun (*_rc_config, &RCConfiguration::get_seamless_loop),
+ sigc::mem_fun (*_rc_config, &RCConfiguration::set_seamless_loop)
+ ));
+
+ add_option (_("Transport"),
+ new BoolOption (
"primary-clock-delta-edit-cursor",
_("Primary clock delta to edit cursor"),
sigc::mem_fun (*_rc_config, &RCConfiguration::get_primary_clock_delta_edit_cursor),