1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 18:53:28 +01:00

Qt: change default icon background color to something friendlier looking

This commit is contained in:
Megamouse 2019-08-10 13:51:38 +02:00
parent 697128464b
commit d4c635a83c
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#include "rpcs3_app.h"
#include "rpcs3_app.h"
#include "rpcs3qt/qt_utils.h"
@ -369,7 +369,7 @@ void rpcs3_app::OnChangeStyleSheetRequest(const QString& path)
"QLabel#thumbnail_icon_color { color: rgba(0, 100, 231, 255); }"
// game list icon color
"QLabel#gamelist_icon_background_color { color: rgba(36, 36, 36, 255); }"
"QLabel#gamelist_icon_background_color { color: rgba(240, 240, 240, 255); }"
// tables
"QTableWidget { alternate-background-color: #f2f2f2; background-color: #fff; border: none; }"

View File

@ -131,7 +131,7 @@ namespace gui
const QString notes = "Notes";
const QString titles = "Titles";
const QColor gl_icon_color = QColor(36, 36, 36, 255);
const QColor gl_icon_color = QColor(240, 240, 240, 255);
const gui_save rg_freeze = gui_save(main_window, "recentGamesFrozen", false);
const gui_save rg_entries = gui_save(main_window, "recentGamesNames", QVariant::fromValue(q_pair_list()));