diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-07-30 17:42:02 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-07-30 17:42:02 +0200 |
| commit | 2f5d380943c4f56114f81a6aee81a57579492103 (patch) | |
| tree | 57d4e28176a090235845da899bf53c9645062eaa /src/qt/optionsmodel.h | |
| parent | Make dot in amount field more apparent (diff) | |
| download | discoin-2f5d380943c4f56114f81a6aee81a57579492103.tar.xz discoin-2f5d380943c4f56114f81a6aee81a57579492103.zip | |
Hide addresses in transaction overview by default, they can be re-shown as a configuration option
Diffstat (limited to 'src/qt/optionsmodel.h')
| -rw-r--r-- | src/qt/optionsmodel.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index ed26f83d5..7f489c501 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -27,6 +27,7 @@ public: ProxyPort, // QString Fee, // qint64 DisplayUnit, // BitcoinUnits::Unit + DisplayAddresses, // bool OptionIDRowCount }; @@ -39,10 +40,12 @@ public: bool getMinimizeToTray(); bool getMinimizeOnClose(); int getDisplayUnit(); + bool getDisplayAddresses(); private: // Wallet stores persistent options CWallet *wallet; int nDisplayUnit; + bool bDisplayAddresses; signals: void displayUnitChanged(int unit); |