mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-05 06:21:26 +12:00
Qt: Fix weird naming issue on linux
This commit is contained in:
parent
62ca7a9b60
commit
7c683c368d
3 changed files with 9 additions and 9 deletions
|
@ -466,11 +466,11 @@ void gui_application::OnChangeStyleSheetRequest()
|
|||
|
||||
const QString stylesheet = m_gui_settings->GetValue(gui::m_currentStylesheet).toString();
|
||||
|
||||
if (stylesheet.isEmpty() || stylesheet == gui::Default)
|
||||
if (stylesheet.isEmpty() || stylesheet == gui::DefaultStylesheet)
|
||||
{
|
||||
setStyleSheet(gui::stylesheets::default_style_sheet);
|
||||
}
|
||||
else if (stylesheet == gui::None)
|
||||
else if (stylesheet == gui::NoStylesheet)
|
||||
{
|
||||
setStyleSheet("/* none */");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue