a) use ink extents in most places where we used to use logical extents
[ardour.git] / gtk2_ardour / editor_mixer.cc
index f6fe3b66c9dbfce16c87af17076942dd20a57653..410474114a0c7c8fe38f378327edbea62d4363cd 100644 (file)
@@ -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());
        }
 }