From 571465ff7e18b88afd0f5c835c5697f1cd93704d Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sun, 5 Dec 2010 19:56:38 +0000 Subject: [PATCH] BUGFIX: Fix alternative speed icon staying pressed when disabled --- Changelog | 3 +++ src/statusbar.h | 1 + 2 files changed, 4 insertions(+) diff --git a/Changelog b/Changelog index f3d7ea8bd..c6c067c65 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.5.2 + - BUGFIX: Fix alternative speed icon staying pressed when disabled + * Sun Dec 5 2010 - Christophe Dumez - v2.5.1 - BUGFIX: Fix possible crash when right-clicking on a torrent diff --git a/src/statusbar.h b/src/statusbar.h index 6c6023fbe..5a13d94bb 100644 --- a/src/statusbar.h +++ b/src/statusbar.h @@ -214,6 +214,7 @@ public slots: } else { altSpeedsBtn->setIcon(QIcon(":/Icons/slow_off.png")); altSpeedsBtn->setToolTip(tr("Click to enable alternative speed limits")); + altSpeedsBtn->setDown(false); } }