give those who insist on seeing the mixer window and/or editor mixer on stupidly...
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 28 Oct 2013 00:55:06 +0000 (20:55 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 28 Oct 2013 00:55:06 +0000 (20:55 -0400)
gtk2_ardour/ardour_ui_dialogs.cc
gtk2_ardour/editor_mixer.cc

index db9e420206f0299fbbfe83d95f03f511bd00e0fc..2ad4cd3c92a2c34524bdafc1d42391f1971c602e 100644 (file)
@@ -335,7 +335,7 @@ ARDOUR_UI::goto_mixer_window ()
                screen = Gdk::Screen::get_default();
        }
        
-       if (screen && screen->get_height() < 700) {
+       if (g_getenv ("ARDOUR_LOVES_STUPID_TINY_SCREENS") == 0 && screen && screen->get_height() < 700) {
                Gtk::MessageDialog msg (_("This screen is not tall enough to display the mixer window"));
                msg.run ();
                return;
index f63e396ba73738dd1893282db97992d29e6bf2f5..37654913eb2f77eb399f1b945b5cdca2a488321a 100644 (file)
@@ -86,7 +86,7 @@ Editor::show_editor_mixer (bool yn)
                        screen = Gdk::Screen::get_default();
                }
 
-               if (screen && screen->get_height() < 700) {
+               if (g_getenv ("ARDOUR_LOVES_STUPID_TINY_SCREENS") == 0 && screen && screen->get_height() < 700) {
                        Gtk::MessageDialog msg (_("This screen is not tall enough to display the editor mixer"));
                        msg.run ();
                        return;