From 65046c2003605c57ed67cb5d2dfd1244527c3d75 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Fri, 18 Mar 2016 15:03:26 +0100 Subject: [PATCH] Core: Set "Flat" as default theme If qtcreator.ini does not have a [Core]CreatorTheme entry (user did not manually change the theme before), "flat" will now be the default. Change-Id: I0351668db3dcacada14d55ce1a5be194e04190f3 Reviewed-by: Tobias Hunger Reviewed-by: Eike Ziller Reviewed-by: Leena Miettinen --- src/plugins/coreplugin/coreconstants.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/coreconstants.h b/src/plugins/coreplugin/coreconstants.h index 77052130fdb..0098fc4601c 100644 --- a/src/plugins/coreplugin/coreconstants.h +++ b/src/plugins/coreplugin/coreconstants.h @@ -198,7 +198,7 @@ const char SETTINGS_ID_MIMETYPES[] = "E.MimeTypes"; const char SETTINGS_DEFAULTTEXTENCODING[] = "General/DefaultFileEncoding"; const char SETTINGS_THEME[] = "Core/CreatorTheme"; -const char DEFAULT_THEME[] = "default"; +const char DEFAULT_THEME[] = "flat"; const char ALL_FILES_FILTER[] = QT_TRANSLATE_NOOP("Core", "All Files (*)");