mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-30 18:39:23 +00:00
fix(src/app/App): do not use iconified icon on MacOS
This commit is contained in:
parent
c71f1590dd
commit
f18035bf44
1 changed files with 4 additions and 4 deletions
|
|
@ -153,10 +153,10 @@ void App::initContentApp () {
|
|||
else
|
||||
setTrayIcon();
|
||||
|
||||
#endif // ifndef __APPLE__
|
||||
if (!m_parser.isSet("iconified"))
|
||||
getMainWindow()->showNormal();
|
||||
|
||||
if (!m_parser.isSet("iconified"))
|
||||
getMainWindow()->showNormal();
|
||||
#endif // ifndef __APPLE__
|
||||
|
||||
if (m_parser.isSet("selftest"))
|
||||
QTimer::singleShot(300, this, &App::quit);
|
||||
|
|
@ -172,7 +172,7 @@ void App::parseArgs () {
|
|||
{ "config", tr("commandLineOptionConfig"), "file" },
|
||||
#ifndef __APPLE__
|
||||
{ "iconified", tr("commandLineOptionIconified") },
|
||||
#endif // __APPLE__
|
||||
#endif // ifndef __APPLE__
|
||||
{ "selftest", tr("commandLineOptionSelftest") },
|
||||
{ { "V", "verbose" }, tr("commandLineOptionVerbose") }
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue