summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_mixer.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-04-20 18:14:00 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-04-20 18:14:00 +0000
commit17b18acda3447214bd739107d9a46eecfaa6ef70 (patch)
tree695aa15c29117e101a0246ece8bbf25803b2cd67 /gtk2_ardour/editor_mixer.cc
parentd7e728476a18bc024ae18705aa9d32ea21a1c4af (diff)
a) use ink extents in most places where we used to use logical extents
for text sizing b) add back scroll-wheel functionality to plugin parameter controls git-svn-id: svn://localhost/trunk/ardour2@460 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_mixer.cc')
-rw-r--r--gtk2_ardour/editor_mixer.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_mixer.cc b/gtk2_ardour/editor_mixer.cc
index f6fe3b66c9..410474114a 100644
--- a/gtk2_ardour/editor_mixer.cc
+++ b/gtk2_ardour/editor_mixer.cc
@@ -36,6 +36,8 @@ Editor::editor_mixer_button_toggled ()
Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
if (act) {
Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
+ bool yn = tact->get_active();
+ cerr << "button toggled, state = " << yn << endl;
show_editor_mixer (tact->get_active());
}
}