aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/proto_tree.cpp
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/qt/proto_tree.cpp
parentaa347d504f65d3c8650c02a3b2cd839d11d0936b (diff)
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/qt/proto_tree.cpp')
-rw-r--r--ui/qt/proto_tree.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt/proto_tree.cpp b/ui/qt/proto_tree.cpp
index c4592041c2..c63b26a149 100644
--- a/ui/qt/proto_tree.cpp
+++ b/ui/qt/proto_tree.cpp
@@ -36,7 +36,7 @@
#include <QContextMenuEvent>
#include <QMainWindow>
-QColor expert_color_comment ( 0x00, 0xff, 0x00 ); /* Green */
+QColor expert_color_comment ( 0xb7, 0xf7, 0x74 ); /* Green */
QColor expert_color_chat ( 0x80, 0xb7, 0xf7 ); /* light blue */
QColor expert_color_note ( 0xa0, 0xff, 0xff ); /* bright turquoise */
QColor expert_color_warn ( 0xf7, 0xf2, 0x53 ); /* yellow */