Skip to content

Commit

Permalink
Merge pull request #653 from luke-jr/bugfix_transparent_tooltip
Browse files Browse the repository at this point in the history
Bugfix: only make QListView transparent, not its tooltips
  • Loading branch information
laanwj committed Nov 21, 2011
2 parents c968b68 + a3c675d commit fe90327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/overviewpage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ OverviewPage::OverviewPage(QWidget *parent) :
ui->labelNumTransactions->setToolTip(tr("Total number of transactions in wallet"));

// Recent transactions
ui->listTransactions->setStyleSheet("background:transparent");
ui->listTransactions->setStyleSheet("QListView { background:transparent }");
ui->listTransactions->setItemDelegate(txdelegate);
ui->listTransactions->setIconSize(QSize(DECORATION_SIZE, DECORATION_SIZE));
ui->listTransactions->setSelectionMode(QAbstractItemView::NoSelection);
Expand Down

0 comments on commit fe90327

Please sign in to comment.