mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
BUGFIX: Use a pointing cursor over status bar buttons
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
- BUGFIX: Improved IPv6 support (IP filter and Peer list)
|
||||
- BUGFIX: Make IP filter more tolerant towards strangely formatted IPs
|
||||
- BUGFIX: Fix compilation with libnotify v0.7.0 (closes #671769)
|
||||
- BUGFIX: Use a pointing cursor over status bar buttons
|
||||
|
||||
* Sun Oct 31 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.4.9
|
||||
- BUGFIX: Fix crash when pressing enter in save path field in torrent addition dialog
|
||||
|
||||
@@ -82,10 +82,12 @@ public:
|
||||
connect(dlSpeedLbl, SIGNAL(clicked()), this, SLOT(capDownloadSpeed()));
|
||||
dlSpeedLbl->setFlat(true);
|
||||
dlSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
||||
dlSpeedLbl->setCursor(Qt::PointingHandCursor);
|
||||
|
||||
altSpeedsBtn = new QPushButton();
|
||||
altSpeedsBtn->setFixedWidth(22);
|
||||
altSpeedsBtn->setFlat(true);
|
||||
altSpeedsBtn->setCursor(Qt::PointingHandCursor);
|
||||
altSpeedsBtn->setFocusPolicy(Qt::NoFocus);
|
||||
updateAltSpeedsBtn(Preferences::isAltBandwidthEnabled());
|
||||
|
||||
@@ -95,6 +97,7 @@ public:
|
||||
//upSpeedLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
||||
connect(upSpeedLbl, SIGNAL(clicked()), this, SLOT(capUploadSpeed()));
|
||||
upSpeedLbl->setFlat(true);
|
||||
upSpeedLbl->setCursor(Qt::PointingHandCursor);
|
||||
upSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
||||
DHTLbl = new QLabel(tr("DHT: %1 nodes").arg(0));
|
||||
DHTLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
||||
|
||||
Reference in New Issue
Block a user