[Gd-chatter] r10981 - trunk/libraries/gui-sniffer

hannes at gwydiondylan.org hannes at gwydiondylan.org
Tue Nov 21 23:54:48 CET 2006


Author: hannes
Date: Tue Nov 21 23:54:45 2006
New Revision: 10981

Modified:
   trunk/libraries/gui-sniffer/gui-sniffer.dylan
Log:
Bug: 7299
* don't set the gadget-value stretchy-vector to the network-frames stretchy-vector we fill

Modified: trunk/libraries/gui-sniffer/gui-sniffer.dylan
==============================================================================
--- trunk/libraries/gui-sniffer/gui-sniffer.dylan	(original)
+++ trunk/libraries/gui-sniffer/gui-sniffer.dylan	Tue Nov 21 23:54:45 2006
@@ -261,7 +261,10 @@
         frame.network-frames
       end;
   unless (shown-packets = gadget-items(frame.packet-table))
-    gadget-items(frame.packet-table) := shown-packets;
+    gadget-items(frame.packet-table) := #();
+    do(method(x)
+         add-item(frame.packet-table, make-item(frame.packet-table, x))
+       end, shown-packets);
     show-packet(frame);
   end;
 end;



More information about the chatter mailing list