summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-04-16 07:31:01 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-04-16 07:31:01 -0400
commit0f7f9b068c6253f6a45c4e86f608b277c5a5f808 (patch)
tree64ff4ae8607c2f5cff1809ea68ed72a3b20a358c /gtk2_ardour
parente324249d8ca7afa677420dbb2baa6bb26e4b411f (diff)
add preferences item for show-name-highlight (does not take effect till next instance)
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 b35ae1a3fb..d4a5c57705 100644
--- a/gtk2_ardour/rc_option_editor.cc
+++ b/gtk2_ardour/rc_option_editor.cc
@@ -2124,6 +2124,14 @@ RCOptionEditor::RCOptionEditor ()
sigc::mem_fun (*_rc_config, &RCConfiguration::set_use_tooltips)
));
+ add_option (S_("Preferences|GUI"),
+ new BoolOption (
+ "show-name-highlight",
+ _("use name highlight bars in region displays"),
+ sigc::mem_fun (*_rc_config, &RCConfiguration::get_show_name_highlight),
+ sigc::mem_fun (*_rc_config, &RCConfiguration::set_show_name_highlight)
+ ));
+
#ifndef GTKOSX
/* font scaling does nothing with GDK/Quartz */
add_option (S_("Preferences|GUI"), new FontScalingOptions (_rc_config));