Mercurial > hg > sonic-visualiser
diff main/MainWindow.cpp @ 686:7f7fba33b7de
Add network permission to prefs; make OSC support one of the things that depends on it
author | Chris Cannam |
---|---|
date | Thu, 12 Dec 2013 15:20:42 +0000 |
parents | 17fbb120222b |
children | 959f01137742 049a9418cc27 |
line wrap: on
line diff
--- a/main/MainWindow.cpp Wed Dec 11 22:00:09 2013 +0000 +++ b/main/MainWindow.cpp Thu Dec 12 15:20:42 2013 +0000 @@ -128,7 +128,7 @@ MainWindow::MainWindow(bool withAudioOutput, bool withOSCSupport) : - MainWindowBase(withAudioOutput, withOSCSupport, true), + MainWindowBase(withAudioOutput, true), m_overview(0), m_mainMenusCreated(false), m_paneMenu(0), @@ -302,6 +302,9 @@ NetworkPermissionTester tester; bool networkPermission = tester.havePermission(); if (networkPermission) { + if (withOSCSupport) { + startOSCQueue(); + } TransformFactory::getInstance()->startPopulationThread(); m_surveyer = new Surveyer ("sonicvisualiser.org", "survey23-present.txt", "survey23.php");