diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-11-25 15:14:37 +0200 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-11-25 15:14:37 +0200 |
commit | f36e498503860a5c3051ef202c60b61876150c61 (patch) | |
tree | 79477587e672fd657ba9ebd1bb322edda72618e7 /include | |
parent | Use span tags to prevent html escaping (diff) | |
download | nheko-f36e498503860a5c3051ef202c60b61876150c61.tar.xz |
Update system theme
Diffstat (limited to 'include')
-rw-r--r-- | include/RegisterPage.h | 3 | ||||
-rw-r--r-- | include/ui/TextField.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/RegisterPage.h b/include/RegisterPage.h index 26d9f2c0..2d1d954b 100644 --- a/include/RegisterPage.h +++ b/include/RegisterPage.h @@ -21,7 +21,6 @@ #include <QLayout> #include <QSharedPointer> -class Avatar; class FlatButton; class MatrixClient; class RaisedButton; @@ -55,7 +54,7 @@ private: QHBoxLayout *logo_layout_; QHBoxLayout *button_layout_; - Avatar *logo_; + QLabel *logo_; QLabel *error_label_; FlatButton *back_button_; diff --git a/include/ui/TextField.h b/include/ui/TextField.h index c215a1f8..f66a7451 100644 --- a/include/ui/TextField.h +++ b/include/ui/TextField.h @@ -18,6 +18,7 @@ class TextField : public QLineEdit Q_PROPERTY(QColor textColor WRITE setTextColor READ textColor) Q_PROPERTY(QColor inkColor WRITE setInkColor READ inkColor) Q_PROPERTY(QColor underlineColor WRITE setUnderlineColor READ underlineColor) + Q_PROPERTY(QColor backgroundColor WRITE setBackgroundColor READ backgroundColor) public: explicit TextField(QWidget *parent = 0); |