Browse Source
Merge pull request #7719 from gidoly/patch-6
Change default theme to Dark colorful
pull/15/merge
bunnei
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
17 additions and
3 deletions
-
src/yuzu/configuration/config.cpp
-
src/yuzu/uisettings.h
|
|
|
@ -743,7 +743,10 @@ void Config::ReadUIValues() { |
|
|
|
qt_config->beginGroup(QStringLiteral("UI")); |
|
|
|
|
|
|
|
UISettings::values.theme = |
|
|
|
ReadSetting(QStringLiteral("theme"), QString::fromUtf8(UISettings::themes[0].second)) |
|
|
|
ReadSetting( |
|
|
|
QStringLiteral("theme"), |
|
|
|
QString::fromUtf8( |
|
|
|
UISettings::themes[static_cast<size_t>(UISettings::Theme::DarkColorful)].second)) |
|
|
|
.toString(); |
|
|
|
ReadBasicSetting(UISettings::values.enable_discord_presence); |
|
|
|
ReadBasicSetting(UISettings::values.select_user_on_boot); |
|
|
|
@ -1270,8 +1273,10 @@ void Config::SaveSystemValues() { |
|
|
|
void Config::SaveUIValues() { |
|
|
|
qt_config->beginGroup(QStringLiteral("UI")); |
|
|
|
|
|
|
|
WriteSetting(QStringLiteral("theme"), UISettings::values.theme, |
|
|
|
QString::fromUtf8(UISettings::themes[0].second)); |
|
|
|
WriteSetting( |
|
|
|
QStringLiteral("theme"), UISettings::values.theme, |
|
|
|
QString::fromUtf8( |
|
|
|
UISettings::themes[static_cast<size_t>(UISettings::Theme::DarkColorful)].second)); |
|
|
|
WriteBasicSetting(UISettings::values.enable_discord_presence); |
|
|
|
WriteBasicSetting(UISettings::values.select_user_on_boot); |
|
|
|
|
|
|
|
|
|
|
|
@ -29,6 +29,15 @@ struct Shortcut { |
|
|
|
ContextualShortcut shortcut; |
|
|
|
}; |
|
|
|
|
|
|
|
enum class Theme { |
|
|
|
Default, |
|
|
|
DefaultColorful, |
|
|
|
Dark, |
|
|
|
DarkColorful, |
|
|
|
MidnightBlue, |
|
|
|
MidnightBlueColorful, |
|
|
|
}; |
|
|
|
|
|
|
|
using Themes = std::array<std::pair<const char*, const char*>, 6>; |
|
|
|
extern const Themes themes; |
|
|
|
|
|
|
|
|