mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
[Qt] Fix bolding of GraphicsChoice.cpp
This commit is contained in:
parent
10b3f02385
commit
47a2a16b77
@ -16,12 +16,9 @@ GraphicsChoice::GraphicsChoice(const QStringList& options, const Config::ConfigI
|
|||||||
setCurrentIndex(Config::Get(m_setting));
|
setCurrentIndex(Config::Get(m_setting));
|
||||||
|
|
||||||
connect(&Settings::Instance(), &Settings::EmulationStateChanged, [this]() {
|
connect(&Settings::Instance(), &Settings::EmulationStateChanged, [this]() {
|
||||||
if (Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base)
|
QFont bf = font();
|
||||||
{
|
bf.setBold(Config::GetActiveLayerForConfig(m_setting) != Config::LayerType::Base);
|
||||||
QFont bf = font();
|
setFont(bf);
|
||||||
bf.setBold(true);
|
|
||||||
setFont(bf);
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user