mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-23 10:41:39 +00:00
parent
c9569fae24
commit
bbdf0732ad
5 changed files with 13 additions and 11 deletions
|
@ -140,6 +140,12 @@ void InterfacePane::CreateUI()
|
|||
|
||||
m_combobox_userstyle->addItem(tr("System"), static_cast<int>(Settings::StyleType::System));
|
||||
|
||||
// TODO: Support forcing light/dark on other OSes too.
|
||||
#ifdef _WIN32
|
||||
m_combobox_userstyle->addItem(tr("Light"), static_cast<int>(Settings::StyleType::Light));
|
||||
m_combobox_userstyle->addItem(tr("Dark"), static_cast<int>(Settings::StyleType::Dark));
|
||||
#endif
|
||||
|
||||
for (const std::string& path : userstyle_search_results)
|
||||
{
|
||||
const QFileInfo file_info(QString::fromStdString(path));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue