diff options
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/App.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/App.cpp b/src/gui/App.cpp index fa48cb18..dc8f605a 100644 --- a/src/gui/App.cpp +++ b/src/gui/App.cpp @@ -151,12 +151,12 @@ App::run() // with 'ingen -egl' we'd get a bunch of notifications about load // immediately before even knowing about the root graph or plugins) while (!_connect_window->attached()) { - if (_main->iteration()) { + if (Gtk::Main::iteration()) { break; } } - _main->run(); + Gtk::Main::run(); } void |