From ca835a105bf33a06a4e2048b22658e8814797a6f Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 8 Nov 2010 18:25:21 +0000 Subject: [PATCH] BUGFIX: Use a pointing cursor over status bar buttons --- Changelog | 1 + src/statusbar.h | 3 +++ 2 files changed, 4 insertions(+) diff --git a/Changelog b/Changelog index 6e8f7d35f..03f246a7d 100644 --- a/Changelog +++ b/Changelog @@ -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 - v2.4.9 - BUGFIX: Fix crash when pressing enter in save path field in torrent addition dialog diff --git a/src/statusbar.h b/src/statusbar.h index 5b2a12489..44f3cf85a 100644 --- a/src/statusbar.h +++ b/src/statusbar.h @@ -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);