mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Small fix for list order in tray upload speed limit submenu
This commit is contained in:
parent
652639540f
commit
820d427a61
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class DelugeGTK:
|
|||
self.submenu_bwdownset.append(subitem)
|
||||
|
||||
group = None
|
||||
for value in self.config.get("tray_uploadspeedlist"):
|
||||
for value in sorted(self.config.get("tray_uploadspeedlist")):
|
||||
subitem = gtk.RadioMenuItem(group, str(value) + " " + _("KiB/s"))
|
||||
group = subitem
|
||||
if value == self.config.get("max_upload_rate"):
|
||||
|
|
Loading…
Add table
Reference in a new issue