Use existing constant instead of hardcoded size value

This commit is contained in:
crowning- 2015-05-17 21:21:43 +02:00
parent 8f61995aad
commit eea3317755
2 changed files with 1 additions and 1175 deletions

File diff suppressed because it is too large Load Diff

View File

@ -178,7 +178,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) :
labelConnectionsIcon = new QPushButton();
labelConnectionsIcon->setFlat(true); // Make the button look like a label, but clickable
labelConnectionsIcon->setStyleSheet("background-color: rgba(255, 255, 255, 0);");
labelConnectionsIcon->setMaximumSize(16, 16);
labelConnectionsIcon->setMaximumSize(STATUSBAR_ICONSIZE, STATUSBAR_ICONSIZE);
labelBlocksIcon = new QLabel();
if(enableWallet)
{