diff options
| author | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:36:21 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2014-07-07 10:42:53 +0200 |
| commit | 88ae36bc06d9c9458442242b12ee730dbe67cffc (patch) | |
| tree | d209d06ef7fabaf64889806e7cb9785b93b97b4a /src/qt/bitcoingui.cpp | |
| parent | Merge pull request #4401 (diff) | |
| parent | [Qt] Replace status bar unit icon with actual images (diff) | |
| download | discoin-88ae36bc06d9c9458442242b12ee730dbe67cffc.tar.xz discoin-88ae36bc06d9c9458442242b12ee730dbe67cffc.zip | |
Merge pull request #4466
ad87bc4 [Qt] Replace status bar unit icon with actual images (Cozz Lovan)
Diffstat (limited to 'src/qt/bitcoingui.cpp')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index b45d861b8..6b3aa2a2d 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -1009,7 +1009,6 @@ UnitDisplayStatusBarControl::UnitDisplayStatusBarControl():QLabel() { optionsModel = 0; createContextMenu(); - setStyleSheet("font:11pt; color: #333333"); setToolTip(tr("Unit to show amounts in. Click to select another unit.")); } @@ -1054,7 +1053,7 @@ void UnitDisplayStatusBarControl::setOptionsModel(OptionsModel *optionsModel) /** When Display Units are changed on OptionsModel it will refresh the display text of the control on the status bar */ void UnitDisplayStatusBarControl::updateDisplayUnit(int newUnits) { - setText(BitcoinUnits::name(newUnits)); + setPixmap(QIcon(":/icons/unit_" + BitcoinUnits::id(newUnits)).pixmap(31,STATUSBAR_ICONSIZE)); } /** Shows context menu with Display Unit options by the mouse coordinates */ |