From 472d2a21d6a6946bd7fb386c3a8b719bd9f00cf2 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Wed, 20 May 2015 23:09:31 +0300 Subject: [PATCH] fix tooltip background --- src/qt/bitcoingui.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 9c17d81da5c7a..346fc51a3c0b6 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -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)