summaryrefslogtreecommitdiff
path: root/ui/gtk/packet_panes.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2012-12-23 04:37:58 +0000
committerGerald Combs <gerald@wireshark.org>2012-12-23 04:37:58 +0000
commita5d5162826b0349b0a7846d8336afdd77ab07a65 (patch)
tree1b47592d5aeb6b4cfcab86bf9264242446fc99b4 /ui/gtk/packet_panes.c
parentaa347d504f65d3c8650c02a3b2cd839d11d0936b (diff)
downloadwireshark-a5d5162826b0349b0a7846d8336afdd77ab07a65.tar.gz
Qt: Implement packet comments. Fix packet detail updates.
GTK+: Shorten the packet comment menu item name. Remove a couple of unneeded includes. Both: Add an arbitrary 20 MB limit when fetching all packet comments. Use a color from the Tango palette for comments. svn path=/trunk/; revision=46709
Diffstat (limited to 'ui/gtk/packet_panes.c')
-rw-r--r--ui/gtk/packet_panes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/packet_panes.c b/ui/gtk/packet_panes.c
index d327475577..4a6c158d34 100644
--- a/ui/gtk/packet_panes.c
+++ b/ui/gtk/packet_panes.c
@@ -1127,7 +1127,7 @@ set_ptree_font_all(PangoFontDescription *font)
*/
static gboolean colors_ok = FALSE;
-GdkColor expert_color_comment = {0, 0x0000, 0xffff, 0x0000 }; /* Green */
+GdkColor expert_color_comment = { 0, 0xb7b7, 0xf7f7, 0x7474 }; /* Green */
GdkColor expert_color_chat = { 0, 0x8080, 0xb7b7, 0xf7f7 }; /* light blue */
GdkColor expert_color_note = { 0, 0xa0a0, 0xffff, 0xffff }; /* bright turquoise */
GdkColor expert_color_warn = { 0, 0xf7f7, 0xf2f2, 0x5353 }; /* yellow */