Merge pull request #1 from UdjinM6/tooltip_fix

fix tooltip background
This commit is contained in:
crowning- 2015-05-20 23:43:39 +02:00
commit 2d86395447

View File

@ -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)