summaryrefslogtreecommitdiff
path: root/gtk2_ardour/location_ui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-11-26 02:15:44 +0000
committerCarl Hetherington <carl@carlh.net>2009-11-26 02:15:44 +0000
commit7664d86dc548ced3cf6947320de0cd235353d78d (patch)
tree2b8309834ed162592fbc786366d5a96e7f3dbd66 /gtk2_ardour/location_ui.cc
parentc07f42b9f4162ec52932b0763cba2c649cb79f56 (diff)
Fix #2931; redundant menu items on main clocks.
git-svn-id: svn://localhost/ardour2/branches/3.0@6184 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/location_ui.cc')
-rw-r--r--gtk2_ardour/location_ui.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/location_ui.cc b/gtk2_ardour/location_ui.cc
index 911dad86cd..4dfd168c3f 100644
--- a/gtk2_ardour/location_ui.cc
+++ b/gtk2_ardour/location_ui.cc
@@ -46,9 +46,9 @@ using namespace Gtkmm2ext;
LocationEditRow::LocationEditRow(Session * sess, Location * loc, int32_t num)
: location(0), session(0),
item_table (1, 6, false),
- start_clock (X_("locationstart"), true, X_("LocationEditRowClock"), true),
- end_clock (X_("locationend"), true, X_("LocationEditRowClock"), true),
- length_clock (X_("locationlength"), true, X_("LocationEditRowClock"), true, true),
+ start_clock (X_("locationstart"), true, X_("LocationEditRowClock"), true, false),
+ end_clock (X_("locationend"), true, X_("LocationEditRowClock"), true, false),
+ length_clock (X_("locationlength"), true, X_("LocationEditRowClock"), true, false, true),
cd_check_button (_("CD")),
hide_check_button (_("Hide")),
scms_check_button (_("SCMS")),