diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/jalv_qt4.cpp | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -2,6 +2,7 @@ jalv (1.4.1) unstable; * Fix crash when running "jalv" with bad command line arguments * Fix potential crash with UIs and debug printing + * Fix parameter changes with Qt UI * Nicer printing of atom messages with -d * Add command-line option to control UI update frequency * Support rsz:minimumSize for atom and event ports @@ -9,7 +10,7 @@ jalv (1.4.1) unstable; (patch from Robin Gareus) * Work around Gtk bug for labels on sliders (patch from Robin Gareus) - -- David Robillard <d@drobilla.net> Sun, 26 May 2013 21:25:21 -0400 + -- David Robillard <d@drobilla.net> Thu, 08 Aug 2013 15:44:21 -0400 jalv (1.4.0) stable; diff --git a/src/jalv_qt4.cpp b/src/jalv_qt4.cpp index 04bea72..b082233 100644 --- a/src/jalv_qt4.cpp +++ b/src/jalv_qt4.cpp @@ -83,6 +83,7 @@ jalv_open_ui(Jalv* jalv) quit_action->setShortcuts(QKeySequence::Quit); quit_action->setStatusTip("Quit Jalv"); file_menu->addAction(quit_action); + jalv->has_ui = TRUE; if (jalv->ui) { jalv_ui_instantiate(jalv, jalv_native_ui_type(jalv), win); |