diff options
author | Jonas Schnelli <jonas.schnelli@include7.ch> | 2014-11-14 17:16:31 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-12-16 11:15:08 +0100 |
commit | ac23394ea8118fe50131513bcd68c822a7ac4095 (patch) | |
tree | 5296d36bb6221baf8ec222e102afdd9d8dcbbe60 /src/qt/networkstyle.h | |
parent | 8e76ca0429db552cbf6f51dadd5467a1bc899027 (diff) |
resize tray icon because a 1024x1024 icon won't show in ubuntu (bug)
Diffstat (limited to 'src/qt/networkstyle.h')
-rw-r--r-- | src/qt/networkstyle.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/networkstyle.h b/src/qt/networkstyle.h index 3e3332cd8b..953004c127 100644 --- a/src/qt/networkstyle.h +++ b/src/qt/networkstyle.h @@ -18,6 +18,7 @@ public: const QString &getAppName() const { return appName; } const QIcon &getAppIcon() const { return appIcon; } + const QIcon &getTrayAndWindowIcon() const { return trayAndWindowIcon; } const QString &getTitleAddText() const { return titleAddText; } private: @@ -25,6 +26,7 @@ private: QString appName; QIcon appIcon; + QIcon trayAndWindowIcon; QString titleAddText; }; |