mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Fix showing the other speed dialog in the StatusBar pop-up menus.
This commit is contained in:
parent
b87f68fcb6
commit
4c987aed06
1 changed files with 2 additions and 2 deletions
|
@ -342,7 +342,7 @@ class StatusBar(component.Component):
|
|||
value = -1
|
||||
|
||||
if value == _("Other..."):
|
||||
value = deluge.common.show_other_speed_dialog(
|
||||
value = deluge.common.show_other_dialog(
|
||||
_("Download Speed (KiB/s):"), self.max_download_speed)
|
||||
if value == None:
|
||||
return
|
||||
|
@ -371,7 +371,7 @@ class StatusBar(component.Component):
|
|||
value = -1
|
||||
|
||||
if value == _("Other..."):
|
||||
value = deluge.common.show_other_speed_dialog(
|
||||
value = deluge.common.show_other_dialog(
|
||||
_("Upload Speed (KiB/s):"), self.max_upload_speed)
|
||||
if value == None:
|
||||
return
|
||||
|
|
Loading…
Add table
Reference in a new issue