Don't show the app on the dock bar when we run tests from the terminal

This commit is contained in:
David Capello 2019-10-24 14:59:22 -03:00
parent f76585fbb8
commit 11da527490
2 changed files with 4 additions and 1 deletions

2
laf

@ -1 +1 @@
Subproject commit 45f67be6ef35cf94d427b00a59f8a099b4308700
Subproject commit 0f3e19d6c5908bc771415dc54489ad8852fbac4b

View File

@ -232,6 +232,9 @@ void App::initialize(const AppOptions& options)
}
#endif
os::instance()->setAppMode(m_isGui ? os::AppMode::GUI:
os::AppMode::CLI);
if (m_isGui)
m_uiSystem.reset(new ui::UISystem);