diff --git a/Changelog b/Changelog index 66a9df3df..65dc10963 100644 --- a/Changelog +++ b/Changelog @@ -22,6 +22,7 @@ - COSMETIC: Replaced message box by on-screen notification for download errors - COSMETIC: Improved the torrent creation tool appearance - COSMETIC: Use country flags by Mark James (Thanks to Dmytro Pukha) + - COSMETIC: Use bigger alternative speed icon - OTHERS: Dropped support for Qt <= 4.4 * Tue Aug 24 2010 - Christophe Dumez - v2.4.0 diff --git a/src/Icons/slow.png b/src/Icons/slow.png index 84eed0980..1196bd28a 100644 Binary files a/src/Icons/slow.png and b/src/Icons/slow.png differ diff --git a/src/Icons/slow_off.png b/src/Icons/slow_off.png index 4e9ac62da..df3e43f88 100644 Binary files a/src/Icons/slow_off.png and b/src/Icons/slow_off.png differ diff --git a/src/statusbar.h b/src/statusbar.h index 2814cb53f..6c6023fbe 100644 --- a/src/statusbar.h +++ b/src/statusbar.h @@ -72,7 +72,8 @@ public: dlSpeedLbl->setCursor(Qt::PointingHandCursor); altSpeedsBtn = new QPushButton(); - altSpeedsBtn->setFixedWidth(22); + altSpeedsBtn->setFixedWidth(32); + altSpeedsBtn->setIconSize(QSize(32,32)); altSpeedsBtn->setFlat(true); altSpeedsBtn->setFocusPolicy(Qt::NoFocus); altSpeedsBtn->setCursor(Qt::PointingHandCursor);