diff options
author | David Robillard <d@drobilla.net> | 2009-05-12 19:15:07 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-05-12 19:15:07 +0000 |
commit | ddc09de45b45bdf2afdeff68eb8a17ad237ef6c3 (patch) | |
tree | d71c279860fb016e79be2fb7ea1ba3fa66e6babd /src/Patchage.hpp | |
parent | 61e8765a7b9afda01eb52b5a240701849fd9e116 (diff) | |
download | patchage-ddc09de45b45bdf2afdeff68eb8a17ad237ef6c3.tar.gz patchage-ddc09de45b45bdf2afdeff68eb8a17ad237ef6c3.tar.bz2 patchage-ddc09de45b45bdf2afdeff68eb8a17ad237ef6c3.zip |
Fix threading issues on Jack exit.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@1988 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r-- | src/Patchage.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp index a7b970f..4c3da57 100644 --- a/src/Patchage.hpp +++ b/src/Patchage.hpp @@ -68,7 +68,8 @@ public: void quit() { _main_win->hide(); } void refresh(); - inline void queue_refresh() { _refresh = true; } + inline void queue_refresh() { _refresh = true; } + inline void driver_detached() { _driver_detached = true; } void clear_load(); void info_msg(const std::string& msg); @@ -132,6 +133,7 @@ protected: std::string _settings_filename; bool _attach; + bool _driver_detached; bool _refresh; bool _enable_refresh; |