Skip to content

Commit

Permalink
HiDPI: try to fix issues on Windows (part VI)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Aug 11, 2024
1 parent 4dbd221 commit a00c6b4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/themesupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ const QString ThemeSupport::getThemeStyle(int iconSize)
#ifdef Q_OS_WIN
// svg in qss on windows are broken!
css.replace("/scalable/actions/go-up.svg); /* half */",
"/%12x%12/actions/go-up.png);");
"/%11x%11/actions/go-up.png);");
css.replace("/scalable/actions/go-up.svg); /* full */",
"/%12x%12/actions/go-up.png);");
"/%11x%11/actions/go-up.png);");
css.replace("/scalable/actions/go-down.svg); /* half */",
"/%12x%12/actions/go-down.png);");
"/%11x%11/actions/go-down.png);");
css.replace("/scalable/actions/go-down.svg); /* full */",
"/%12x%12/actions/go-down.png);");
"/%11x%11/actions/go-down.png);");
css.replace("/scalable/actions/dialog-ok.svg",
"/%11x%11/actions/dialog-ok.png");
css.replace("/scalable/actions/dialog-cancel.svg",
Expand Down

0 comments on commit a00c6b4

Please sign in to comment.