mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 06:57:24 -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: Improved IPv6 support (IP filter and Peer list)
|
||||||
- BUGFIX: Make IP filter more tolerant towards strangely formatted IPs
|
- BUGFIX: Make IP filter more tolerant towards strangely formatted IPs
|
||||||
- BUGFIX: Fix compilation with libnotify v0.7.0 (closes #671769)
|
- 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
|
* 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
|
- 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()));
|
connect(dlSpeedLbl, SIGNAL(clicked()), this, SLOT(capDownloadSpeed()));
|
||||||
dlSpeedLbl->setFlat(true);
|
dlSpeedLbl->setFlat(true);
|
||||||
dlSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
dlSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
||||||
|
dlSpeedLbl->setCursor(Qt::PointingHandCursor);
|
||||||
|
|
||||||
altSpeedsBtn = new QPushButton();
|
altSpeedsBtn = new QPushButton();
|
||||||
altSpeedsBtn->setFixedWidth(22);
|
altSpeedsBtn->setFixedWidth(22);
|
||||||
altSpeedsBtn->setFlat(true);
|
altSpeedsBtn->setFlat(true);
|
||||||
|
altSpeedsBtn->setCursor(Qt::PointingHandCursor);
|
||||||
altSpeedsBtn->setFocusPolicy(Qt::NoFocus);
|
altSpeedsBtn->setFocusPolicy(Qt::NoFocus);
|
||||||
updateAltSpeedsBtn(Preferences::isAltBandwidthEnabled());
|
updateAltSpeedsBtn(Preferences::isAltBandwidthEnabled());
|
||||||
|
|
||||||
@@ -95,6 +97,7 @@ public:
|
|||||||
//upSpeedLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
//upSpeedLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
||||||
connect(upSpeedLbl, SIGNAL(clicked()), this, SLOT(capUploadSpeed()));
|
connect(upSpeedLbl, SIGNAL(clicked()), this, SLOT(capUploadSpeed()));
|
||||||
upSpeedLbl->setFlat(true);
|
upSpeedLbl->setFlat(true);
|
||||||
|
upSpeedLbl->setCursor(Qt::PointingHandCursor);
|
||||||
upSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
upSpeedLbl->setFocusPolicy(Qt::NoFocus);
|
||||||
DHTLbl = new QLabel(tr("DHT: %1 nodes").arg(0));
|
DHTLbl = new QLabel(tr("DHT: %1 nodes").arg(0));
|
||||||
DHTLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
DHTLbl->setSizePolicy(QSizePolicy::Maximum, QSizePolicy::Preferred);
|
||||||
|
|||||||
Reference in New Issue
Block a user