We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e210faa commit b85675fCopy full SHA for b85675f
src/gui/tag/TagView.cpp
@@ -20,6 +20,7 @@
20
#include "TagModel.h"
21
#include "core/Database.h"
22
#include "core/Metadata.h"
23
+#include "gui/Application.h"
24
#include "gui/Icons.h"
25
#include "gui/MessageBox.h"
26
@@ -39,7 +40,11 @@ class TagItemDelegate : public QStyledItemDelegate
39
40
if (index.data(Qt::UserRole + 1).toBool()) {
41
QRect bounds = option.rect;
42
bounds.setY(bounds.bottom());
- painter->fillRect(bounds, option.palette.mid());
43
+ if (kpxcApp->isDarkTheme()) {
44
+ painter->fillRect(bounds, option.palette.mid().color().lighter(185));
45
+ } else {
46
+ painter->fillRect(bounds, option.palette.mid());
47
+ }
48
}
49
50
};
0 commit comments