From 4c987aed06d7d89128f412c5daa5b988c0ef5316 Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Wed, 12 Mar 2008 07:56:59 +0000 Subject: [PATCH] Fix showing the other speed dialog in the StatusBar pop-up menus. --- deluge/ui/gtkui/statusbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deluge/ui/gtkui/statusbar.py b/deluge/ui/gtkui/statusbar.py index 70ca5f80a..7d1affb75 100644 --- a/deluge/ui/gtkui/statusbar.py +++ b/deluge/ui/gtkui/statusbar.py @@ -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