[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[vidalia-svn] r1626: Server pinpoints on the map are keyed by keyid, not nickname (in trunk: . src/gui/network)
Author: edmanm
Date: 2007-02-04 21:04:15 -0500 (Sun, 04 Feb 2007)
New Revision: 1626
Modified:
trunk/
trunk/src/gui/network/netviewer.cpp
Log:
r1651@adrastea: edmanm | 2007-02-04 20:06:09 -0500
Server pinpoints on the map are keyed by keyid, not nickname. I guess this
shows how impossible those tiny green dots are to see, since nobody noticed
they weren't being selected (I sure didn't).
Property changes on: trunk
___________________________________________________________________
svk:merge ticket from /vidalia/local/trunk [r1651] on 54b3572a-7227-0410-958f-53ecd705b71a
Modified: trunk/src/gui/network/netviewer.cpp
===================================================================
--- trunk/src/gui/network/netviewer.cpp 2007-02-03 22:57:48 UTC (rev 1625)
+++ trunk/src/gui/network/netviewer.cpp 2007-02-05 02:04:15 UTC (rev 1626)
@@ -343,7 +343,7 @@
_map->deselectAll();
ui.textRouterInfo->clear();
ui.textRouterInfo->display(router);
- _map->selectRouter(router.name());
+ _map->selectRouter(router.id());
}
/** If there are any IPs in the resolve queue, do the request now. */