diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-01 22:20:15 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-11-01 22:20:15 +0100 |
commit | 2aabe9dcacbef4f753761f6df840da4292561d11 (patch) | |
tree | 283b6ee93d7f3c9d4d670e4de08ccfad0bfb0160 /src/ui/Theme.h | |
parent | Some people consider Nheko not an AAAAA title (diff) | |
download | nheko-2aabe9dcacbef4f753761f6df840da4292561d11.tar.xz |
Prompt user when there are unverified devices
Diffstat (limited to '')
-rw-r--r-- | src/ui/Theme.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui/Theme.h b/src/ui/Theme.h index f3e7c287..4fef897d 100644 --- a/src/ui/Theme.h +++ b/src/ui/Theme.h @@ -62,6 +62,7 @@ class Theme : public QPalette Q_PROPERTY(QColor alternateButton READ alternateButton CONSTANT) Q_PROPERTY(QColor separator READ separator CONSTANT) Q_PROPERTY(QColor red READ red CONSTANT) + Q_PROPERTY(QColor orange READ orange CONSTANT) public: Theme() {} explicit Theme(std::string_view theme); @@ -71,7 +72,8 @@ public: QColor alternateButton() const { return alternateButton_; } QColor separator() const { return separator_; } QColor red() const { return red_; } + QColor orange() const { return orange_; } private: - QColor sidebarBackground_, separator_, red_, alternateButton_; + QColor sidebarBackground_, separator_, red_, orange_, alternateButton_; }; |