https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5349
--- Comment #3 from billyjeans@xxxxxxxxx 2011-01-10 02:16:20 PST ---
The following change seems working:
add_packet_to_packet_list in file.c at line 1150, add the same conditions as
NEW_PACKET_LIST is not toggled.
From:
if ((dfcode != NULL && refilter) ||
filtering_tap_listeners || (tap_flags & TL_REQUIRES_PROTO_TREE))
create_proto_tree = TRUE;
To:
if ((dfcode != NULL && refilter) ||
color_filters_used() ||
have_custom_cols(cinfo) ||
filtering_tap_listeners || (tap_flags & TL_REQUIRES_PROTO_TREE))
create_proto_tree = TRUE;
--
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.