Unless it is branded with other icons.
Signed-off-by: Camila <hello@camila.codes>
bool ConfigFile::monoIcons() const
{
QSettings settings(configFile(), QSettings::IniFormat);
- bool monoDefault = false; // On Mac we want bw by default
-#ifdef Q_OS_MAC
- // OEM themes are not obliged to ship mono icons
- monoDefault = (0 == (strcmp("ownCloud", APPLICATION_NAME)));
+ // On Mac and Linux we want bw by default
+ bool monoDefault = QByteArrayLiteral("Nextcloud") == QByteArrayLiteral(APPLICATION_NAME);
+#ifdef Q_OS_WIN
+ monoDefault = false;
#endif
return settings.value(QLatin1String(monoIconsC), monoDefault).toBool();
}