mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-20 07:27:22 -06:00
COSMETIC: Display "Alternative speed limits" button as pressed when enabled
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
- BUGFIX: Fix possible compilation errors with libtorrent v0.15
|
||||
- BUGFIX: Fix minor issues in torrent creation tool
|
||||
- BUGFIX: Use checkable actions to avoid issues on systems hiding menu icons (e.g. recent Gnome)
|
||||
- COSMETIC: Display "Alternative speed limits" button as pressed when enabled
|
||||
|
||||
* Sun Jun 13 2010 - Christophe Dumez <chris@qbittorrent.org> - v2.2.9
|
||||
- FEATURE: Official support for Win32 platform
|
||||
|
||||
@@ -933,13 +933,7 @@ void GUI::createSystrayDelayed() {
|
||||
}
|
||||
|
||||
void GUI::updateAltSpeedsBtn(bool alternative) {
|
||||
if(alternative) {
|
||||
actionUse_alternative_speed_limits->setIcon(QIcon(":/Icons/slow.png"));
|
||||
actionUse_alternative_speed_limits->setText(tr("Use normal speed limits"));
|
||||
} else {
|
||||
actionUse_alternative_speed_limits->setIcon(QIcon(":/Icons/slow_off.png"));
|
||||
actionUse_alternative_speed_limits->setText(tr("Use alternative speed limits"));
|
||||
}
|
||||
actionUse_alternative_speed_limits->setChecked(alternative);
|
||||
}
|
||||
|
||||
QMenu* GUI::getTrayIconMenu() {
|
||||
@@ -951,6 +945,7 @@ QMenu* GUI::getTrayIconMenu() {
|
||||
myTrayIconMenu->addAction(actionDownload_from_URL);
|
||||
myTrayIconMenu->addSeparator();
|
||||
updateAltSpeedsBtn(Preferences::isAltBandwidthEnabled());
|
||||
actionUse_alternative_speed_limits->setChecked(Preferences::isAltBandwidthEnabled());
|
||||
myTrayIconMenu->addAction(actionUse_alternative_speed_limits);
|
||||
myTrayIconMenu->addAction(actionSet_global_download_limit);
|
||||
myTrayIconMenu->addAction(actionSet_global_upload_limit);
|
||||
|
||||
@@ -195,6 +195,7 @@ public slots:
|
||||
if(alternative) {
|
||||
altSpeedsBtn->setIcon(QIcon(":/Icons/slow.png"));
|
||||
altSpeedsBtn->setToolTip(tr("Click to disable alternative speed limits"));
|
||||
altSpeedsBtn->setDown(true);
|
||||
} else {
|
||||
altSpeedsBtn->setIcon(QIcon(":/Icons/slow_off.png"));
|
||||
altSpeedsBtn->setToolTip(tr("Click to enable alternative speed limits"));
|
||||
|
||||
@@ -29,7 +29,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>914</width>
|
||||
<height>26</height>
|
||||
<height>25</height>
|
||||
</rect>
|
||||
</property>
|
||||
<widget class="QMenu" name="menu_Edit">
|
||||
@@ -260,9 +260,8 @@
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionUse_alternative_speed_limits">
|
||||
<property name="icon">
|
||||
<iconset resource="../icons.qrc">
|
||||
<normaloff>:/Icons/slow_off.png</normaloff>:/Icons/slow_off.png</iconset>
|
||||
<property name="checkable">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Use alternative speed limits</string>
|
||||
|
||||
Reference in New Issue
Block a user