Skip to content

Commit 2d86395

Browse files
committed
Merge pull request #1 from UdjinM6/tooltip_fix
fix tooltip background
2 parents 34a205b + 472d2a2 commit 2d86395

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/qt/bitcoingui.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) :
177177
labelEncryptionIcon = new QLabel();
178178
labelConnectionsIcon = new QPushButton();
179179
labelConnectionsIcon->setFlat(true); // Make the button look like a label, but clickable
180-
#ifndef Q_OS_MAC
181-
labelConnectionsIcon->setStyleSheet("background-color: rgba(255, 255, 255, 0);");
182-
#else
183-
labelConnectionsIcon->setStyleSheet("QPushButton { background-color: rgba(255, 255, 255, 0);} QPushButton QToolTip { background-color: black;}");
184-
#endif
180+
labelConnectionsIcon->setStyleSheet(".QPushButton { background-color: rgba(255, 255, 255, 0);}");
185181
labelConnectionsIcon->setMaximumSize(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE);
186182
labelBlocksIcon = new QLabel();
187183
if(enableWallet)

0 commit comments

Comments
 (0)