fix previously cherry-picked commit to be Tracks-only, since Ardour/Mixbus are not...
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 25 May 2015 22:28:45 +0000 (18:28 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 29 Jun 2015 18:18:15 +0000 (14:18 -0400)
libs/gtkmm2ext/gtkapplication_quartz.mm

index 5809355ad9fa9c8d0a53f396ca72a03f45bb81e0..285059ebd4d48a50f7b115f3324474cb5c0fd9dd 100644 (file)
@@ -573,9 +573,12 @@ idle_call_activate (gpointer data)
 - (void) activate:(id) sender
 {
        UNUSED_PARAMETER(sender);
-    // Hot Fix. Increase Priority.
+#ifdef USE_TRACKS_CODE_FEATURES
+       // Hot Fix. Increase Priority.
        g_idle_add_full (G_PRIORITY_HIGH_IDLE, idle_call_activate, gtk_menu_item, NULL);
-//    g_idle_add (idle_call_activate, gtk_menu_item);
+#else
+       g_idle_add (idle_call_activate, gtk_menu_item);
+#endif
 }
 @end