1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-25 20:22:30 +01:00

stylesheets: fix default not working

This commit is contained in:
Megamouse 2017-08-15 22:03:10 +02:00 committed by Ani
parent 6d14583f28
commit ea462ae7d7

View File

@ -297,5 +297,12 @@ QStringList gui_settings::GetStylesheetEntries()
QString gui_settings::GetCurrentStylesheetPath() QString gui_settings::GetCurrentStylesheetPath()
{ {
return settingsDir.absoluteFilePath(GetValue(GUI::m_currentStylesheet).toString() + ".qss"); QString stylesheet = GetValue(GUI::m_currentStylesheet).toString();
if (stylesheet == "default")
{
return "";
}
return settingsDir.absoluteFilePath(stylesheet + ".qss");
} }