aboutsummaryrefslogtreecommitdiff
path: root/src/qt/rpcconsole.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-03-23 23:49:41 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2021-06-05 13:36:53 +0300
commitfb1b1e0f3eae32b087347889ed7502b7f2c48549 (patch)
tree93e36ba6346bfce40c95cdd95d401ea67b85b948 /src/qt/rpcconsole.h
parent898dd9e262e4911fdf729bfe84b026c4e869802d (diff)
downloadbitcoin-fb1b1e0f3eae32b087347889ed7502b7f2c48549.tar.xz
qt: Save/restore column sizes of the tables in the Peers tab
Diffstat (limited to 'src/qt/rpcconsole.h')
-rw-r--r--src/qt/rpcconsole.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/qt/rpcconsole.h b/src/qt/rpcconsole.h
index 75f466642b..2412ae543c 100644
--- a/src/qt/rpcconsole.h
+++ b/src/qt/rpcconsole.h
@@ -10,9 +10,10 @@
#include <net.h>
-#include <QWidget>
+#include <QByteArray>
#include <QCompleter>
#include <QThread>
+#include <QWidget>
class ClientModel;
class PlatformStyle;
@@ -167,6 +168,8 @@ private:
QThread thread;
WalletModel* m_last_wallet_model{nullptr};
bool m_is_executing{false};
+ QByteArray m_peer_widget_header_state;
+ QByteArray m_banlist_widget_header_state;
/** Update UI with latest network info from model. */
void updateNetworkState();