Skip to content

Commit

Permalink
Merge pull request bitcoin#181 from sandakersmann/develop
Browse files Browse the repository at this point in the history
Changed color of text in status bar
  • Loading branch information
peerchemist committed Oct 9, 2017
2 parents e060856 + 850e222 commit 18ca5aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ void BitcoinGUI::createActions()

mintingAction = new QAction(QIcon(":/icons/history"), tr("&Minting"), this);
mintingAction->setToolTip(tr("Show your minting capacity"));
mintingAction->setToolTip(mintingAction->statusTip());
mintingAction->setCheckable(true);
mintingAction->setShortcut(QKeySequence(Qt::ALT + Qt::Key_5));
tabGroup->addAction(mintingAction);
Expand Down
2 changes: 2 additions & 0 deletions src/qt/res/themes/default.qss
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ QToolBar > QToolButton {

/* Status Bar */
QStatusBar {
color: #ffffff;
background: #333333;
border-top: 1px solid #e1e1e1;
}
Expand All @@ -174,6 +175,7 @@ QStatusBar QLabel {
}

QStatusBar::item {
color: #ffffff;
border: none;
}

Expand Down

0 comments on commit 18ca5aa

Please sign in to comment.