Closed GoogleCodeExporter closed 9 years ago
Addition info.
Hosts moved ANYWHERE are saved with no sessionID and hence fall stuck in root
too. It seems to lose it in the treeView1_DragDrop() when being cloned it has
no parent path but is updated before being added to the tree.
Patch below works for me.
Index: SessionTreeview.cs
===================================================================
--- SessionTreeview.cs (revision 263)
+++ SessionTreeview.cs (working copy)
@@ -767,9 +767,9 @@
nodePayload.Remove();
// add new
+ node.Nodes.Add(nodeNew);
UpdateSessionId(nodeNew, (SessionData)nodeNew.Tag); //
- node.Nodes.Add(nodeNew);
-
+
// If this a folder, reset it's childrens sessionIds
if (IsFolderNode(nodeNew))
{
Original comment by djtrem...@gmail.com
on 29 Aug 2012 at 10:25
Thanks, made the change.
Confirmed this was the way it was before v1.3.0.4
Original comment by btatey...@gmail.com
on 1 Sep 2012 at 12:36
Original issue reported on code.google.com by
djtrem...@gmail.com
on 27 Aug 2012 at 9:16