Author: damoxc
Revision: 5839
Log:
fix a bug in the connection manager where the host list wasn't
refreshed after a host was added
Diff:
Modified: branches/1.2_RC/ChangeLog
===================================================================
--- branches/1.2_RC/ChangeLog 2009-10-12 16:46:14 UTC (rev 5838)
+++ branches/1.2_RC/ChangeLog 2009-10-13 09:56:49 UTC (rev 5839)
@@ -7,9 +7,9 @@
==== Core ====
* Fix saving torrent state on fresh configs
-
==== Web ====
* Fix changing of the allocation in the preferences.
+ * Fix updating the Connection Manager when a host is added.
==== Misc ====
* Add man pages for deluge-console and deluge-gtk
Modified: branches/1.2_RC/deluge/ui/web/js/Deluge.ConnectionManager.js
===================================================================
--- branches/1.2_RC/deluge/ui/web/js/Deluge.ConnectionManager.js
2009-10-12 16:46:14 UTC (rev 5838)
+++ branches/1.2_RC/deluge/ui/web/js/Deluge.ConnectionManager.js
2009-10-13 09:56:49 UTC (rev 5839)
@@ -307,7 +307,7 @@
},
onHostAdded: function() {
- this.update(this);
+ this.loadHosts();
},
onClose: function(e) {
Modified: trunk/deluge/ui/web/js/Deluge.ConnectionManager.js
===================================================================
--- trunk/deluge/ui/web/js/Deluge.ConnectionManager.js 2009-10-12 16:46:14 UTC
(rev 5838)
+++ trunk/deluge/ui/web/js/Deluge.ConnectionManager.js 2009-10-13 09:56:49 UTC
(rev 5839)
@@ -307,7 +307,7 @@
},
onHostAdded: function() {
- this.update(this);
+ this.loadHosts();
},
onClose: function(e) {
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---