diff options
author | David Robillard <d@drobilla.net> | 2014-02-02 18:44:27 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-02-02 18:44:27 +0000 |
commit | 9de25ab8525edac98187221815fa2867687b26f0 (patch) | |
tree | 875bfc8f30e0d0505fd8716a012597ed6e0da795 /src/gui | |
parent | db9c2f21eaf8952cf17a06db508879d61e6d007f (diff) | |
download | ingen-9de25ab8525edac98187221815fa2867687b26f0.tar.gz ingen-9de25ab8525edac98187221815fa2867687b26f0.tar.bz2 ingen-9de25ab8525edac98187221815fa2867687b26f0.zip |
Disable responses in the usual case where the UI doesn't care.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5333 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index 6c1b5827..fd85316c 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -452,7 +452,7 @@ ConnectWindow::gtk_callback() _progress_label->set_text("Connected to engine"); _connect_stage = 0; // set ourselves up for next time (if there is one) _finished_connecting = true; - _app->interface()->set_response_id(-1); + _app->interface()->set_response_id(0); return false; // deregister this callback } |