diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-01-22 18:00:36 +0100 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-01-22 21:46:42 +0100 |
commit | 3a3a9273255f1caa68c96c327489938f7f310806 (patch) | |
tree | eeadedd11546c2c561d73f11fc4d3f9c836bfe08 /src/qt/rpcconsole.h | |
parent | fc0899400082496bf2b3e061105e1e6a13399889 (diff) |
[Qt] Add option to increase/decrease font size in the console window
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r-- | src/qt/rpcconsole.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h index 8a48179c57..83b543e546 100644 --- a/src/qt/rpcconsole.h +++ b/src/qt/rpcconsole.h @@ -78,6 +78,9 @@ private Q_SLOTS: public Q_SLOTS: void clear(); + void fontBigger(); + void fontSmaller(); + void setFontSize(int newSize); /** Append the message to the message widget */ void message(int category, const QString &message, bool html = false); /** Set number of connections shown in the UI */ @@ -134,6 +137,7 @@ private: RPCTimerInterface *rpcTimerInterface; QMenu *peersTableContextMenu; QMenu *banTableContextMenu; + int consoleFontSize; }; #endif // BITCOIN_QT_RPCCONSOLE_H |