summaryrefslogtreecommitdiff
path: root/ui/tap-sequence-analysis.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2016-10-02 16:41:08 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2016-10-02 17:55:40 +0000
commite38d103d30f8131efd22742d6b03d7f34a226936 (patch)
tree1e13ba2feb9fabe25e9035765a8e08f24cc0b0ae /ui/tap-sequence-analysis.h
parent9f55eb4e954dd125e229bc94892e1571abd2cd65 (diff)
downloadwireshark-e38d103d30f8131efd22742d6b03d7f34a226936.tar.gz
Qt: Only color sequence analysis items having color filter
Packets without a color filter will end up with fg_color and bg_color = 0, so avoid drawing all in black. Bug: 12065 Change-Id: I76bcabcfa3281fcece08f1b2af66274c808b80bb Reviewed-on: https://code.wireshark.org/review/18018 Petri-Dish: Stig Bjørlykke <stig@bjorlykke.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'ui/tap-sequence-analysis.h')
-rw-r--r--ui/tap-sequence-analysis.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/tap-sequence-analysis.h b/ui/tap-sequence-analysis.h
index e505940720..fff6a46257 100644
--- a/ui/tap-sequence-analysis.h
+++ b/ui/tap-sequence-analysis.h
@@ -61,6 +61,7 @@ typedef struct _seq_analysis_item {
guint16 conv_num; /**< The conversation number. Used for coloring VoIP calls. */
unsigned fg_color; /**< Foreground color, 0xRRGGBB. Qt only. */
unsigned bg_color; /**< Background color, 0xRRGGBB. Qt only. */
+ gboolean has_color_filter; /**< Set if packet has color filter. Qt only. */
gboolean display; /**< indicate if the packet is displayed or not in the graph */
guint src_node; /**< this is used by graph_analysis.c to identify the node */
guint dst_node; /**< a node is an IP address that will be displayed in columns */