Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/entry/EntryModel.cpp')
-rw-r--r--src/gui/entry/EntryModel.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/entry/EntryModel.cpp b/src/gui/entry/EntryModel.cpp
index 04b6abc17..bf7eca0c7 100644
--- a/src/gui/entry/EntryModel.cpp
+++ b/src/gui/entry/EntryModel.cpp
@@ -30,6 +30,9 @@
#include "core/Global.h"
#include "core/Group.h"
#include "core/Metadata.h"
+#ifdef Q_OS_MACOS
+#include "gui/macutils/MacUtils.h"
+#endif
EntryModel::EntryModel(QObject* parent)
: QAbstractTableModel(parent)
@@ -270,6 +273,11 @@ QVariant EntryModel::data(const QModelIndex& index, int role) const
} else if (role == Qt::ForegroundRole) {
if (entry->hasReferences()) {
QPalette p;
+#ifdef Q_OS_MACOS
+ if (macUtils()->isDarkMode()) {
+ return QVariant(p.color(QPalette::Inactive, QPalette::Dark));
+ }
+#endif
return QVariant(p.color(QPalette::Active, QPalette::Mid));
} else if (entry->foregroundColor().isValid()) {
return QVariant(entry->foregroundColor());