summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Loftis <ben@glw.com>2007-07-20 15:55:27 +0000
committerBen Loftis <ben@glw.com>2007-07-20 15:55:27 +0000
commite644ddc4c8efa1b134a61b7a5a7f4112d2e90465 (patch)
treeb265f517f1490795c633f5b6d2a72dc7abdb2d29
parentd013570b133ed28086767b443c1f0e30d47237b8 (diff)
fixed radio group for subframes
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2162 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--gtk2_ardour/editor_actions.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_actions.cc b/gtk2_ardour/editor_actions.cc
index 3525910250..3036d55d10 100644
--- a/gtk2_ardour/editor_actions.cc
+++ b/gtk2_ardour/editor_actions.cc
@@ -426,8 +426,10 @@ Editor::register_actions ()
RadioAction::Group subframe_group;
- ActionManager::register_radio_action (editor_actions, pullup_group, X_("Subframes80"), _("80 per frame"), bind (mem_fun (*this, &Editor::subframes_per_frame_chosen), 80));
- ActionManager::register_radio_action (editor_actions, pullup_group, X_("Subframes100"), _("100 per frame"), bind (mem_fun (*this, &Editor::subframes_per_frame_chosen), 100));
+ ActionManager::register_radio_action (editor_actions, subframe_group, X_("Subframes80"), _("80 per frame"), bind (mem_fun (*this,
+&Editor::subframes_per_frame_chosen), 80));
+ ActionManager::register_radio_action (editor_actions, subframe_group, X_("Subframes100"), _("100 per frame"), bind (mem_fun (*this,
+&Editor::subframes_per_frame_chosen), 100));
ActionManager::add_action_group (rl_actions);
ActionManager::add_action_group (zoom_actions);