diff options
author | David Robillard <d@drobilla.net> | 2022-05-27 14:43:04 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-05-27 14:43:04 -0400 |
commit | aec7eff6112649205b85dc6ca364b52f14d29bb3 (patch) | |
tree | dc206e5290314f0349f8f4592b65a62dc64223e3 | |
parent | 98c4699afb169b2a7744dd86ea0ed04595ea1fc7 (diff) | |
download | jalv-aec7eff6112649205b85dc6ca364b52f14d29bb3.tar.gz jalv-aec7eff6112649205b85dc6ca364b52f14d29bb3.tar.bz2 jalv-aec7eff6112649205b85dc6ca364b52f14d29bb3.zip |
Change no-menu short option to m to avoid clash with jack-name
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | src/jalv_gtk.c | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -3,12 +3,13 @@ jalv (1.6.7) unstable; * Add missing option in console help output * Add version option to console executable * Build Qt and Gtkmm versions as C++14 + * Change no-menu short option to m to avoid clash with jack-name * Clean up and modernize code * Fix crash when running jalv without arguments * Flush stdout after printing control values in console interface * Remove Qt4 support - -- David Robillard <d@drobilla.net> Fri, 27 May 2022 18:38:29 +0000 + -- David Robillard <d@drobilla.net> Fri, 27 May 2022 18:42:52 +0000 jalv (1.6.6) stable; diff --git a/src/jalv_gtk.c b/src/jalv_gtk.c index e95a53d..b98d4dd 100644 --- a/src/jalv_gtk.c +++ b/src/jalv_gtk.c @@ -149,7 +149,7 @@ jalv_init(int* argc, char*** argv, JalvOptions* opts) "Show controls for ports with notOnGUI property on generic UI", NULL}, {"no-menu", - 'n', + 'm', 0, G_OPTION_ARG_NONE, &opts->no_menu, |