Skip to content

Commit

Permalink
Merge pull request #1 from UdjinM6/tooltip_fix
Browse files Browse the repository at this point in the history
fix tooltip background
  • Loading branch information
crowning- committed May 20, 2015
2 parents 34a205b + 472d2a2 commit 2d86395
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/qt/bitcoingui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) :
labelEncryptionIcon = new QLabel();
labelConnectionsIcon = new QPushButton();
labelConnectionsIcon->setFlat(true); // Make the button look like a label, but clickable
#ifndef Q_OS_MAC
labelConnectionsIcon->setStyleSheet("background-color: rgba(255, 255, 255, 0);");
#else
labelConnectionsIcon->setStyleSheet("QPushButton { background-color: rgba(255, 255, 255, 0);} QPushButton QToolTip { background-color: black;}");
#endif
labelConnectionsIcon->setStyleSheet(".QPushButton { background-color: rgba(255, 255, 255, 0);}");
labelConnectionsIcon->setMaximumSize(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE);
labelBlocksIcon = new QLabel();
if(enableWallet)
Expand Down

0 comments on commit 2d86395

Please sign in to comment.