This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
Don't query plugins in dev mode.
tags/v1.0.0
Andrew Belt
6 years ago
parent
2c5fdb32cc
commit
f79cff0784
1 changed files
with
6 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+6
-4
src/plugin.cpp
+ 6
- 4
src/plugin.cpp
View File
@@ -278,10 +278,12 @@ void init() {
}
// Sync in a detached thread
std::thread t([] {
queryUpdates();
});
t.detach();
if (!settings::devMode) {
std::thread t([] {
queryUpdates();
});
t.detach();
}
}
void destroy() {
Write
Preview
Loading…
Cancel
Save