diff options
author | David Robillard <d@drobilla.net> | 2016-10-14 21:52:23 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2016-10-14 21:52:23 -0400 |
commit | eb345180d80bbb26608d56a8ca55f1129c0bbef5 (patch) | |
tree | 204aa360cba46fa530b565156dbf3934eafe5c77 /src | |
parent | 557f33ef287b69d6b4e8b9b9dc85c1c4a2eb19a4 (diff) | |
download | ingen-eb345180d80bbb26608d56a8ca55f1129c0bbef5.tar.gz ingen-eb345180d80bbb26608d56a8ca55f1129c0bbef5.tar.bz2 ingen-eb345180d80bbb26608d56a8ca55f1129c0bbef5.zip |
Don't request plugins until necessary
Diffstat (limited to 'src')
-rw-r--r-- | src/gui/ConnectWindow.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gui/ConnectWindow.cpp b/src/gui/ConnectWindow.cpp index 3078ff05..1968a264 100644 --- a/src/gui/ConnectWindow.cpp +++ b/src/gui/ConnectWindow.cpp @@ -514,12 +514,10 @@ ConnectWindow::gtk_callback() if (root) { set_connected_to(_app->interface()); _app->window_factory()->present_graph(root); - _app->interface()->get(Raul::URI("ingen:/plugins")); next_stage(); } } } else if (_connect_stage == 5) { - _app->interface()->get(Raul::URI("ingen:/plugins")); hide(); _connect_stage = 0; // set ourselves up for next time (if there is one) _finished_connecting = true; |