From b504e64b6acd63bb8ff46e05b8f2d000d3e21ee1 Mon Sep 17 00:00:00 2001 From: Alexis La Goutte Date: Thu, 11 Oct 2012 20:16:24 +0000 Subject: From Edwin Groothuis via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7842 Make relative time columns rightly right justified When showing the relative time in the framelist columns, they are left aligned. This is sub-optimal if you are scanning the list for a different time. This patch, very small, will properly right justify these times: DELTA_TIME DELTA_TIME_DIS svn path=/trunk/; revision=45481 --- ui/gtk/packet_list.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ui/gtk/packet_list.c') diff --git a/ui/gtk/packet_list.c b/ui/gtk/packet_list.c index cc69291010..397e5108d4 100644 --- a/ui/gtk/packet_list.c +++ b/ui/gtk/packet_list.c @@ -175,6 +175,8 @@ right_justify_column (gint col) case COL_UNRES_SRC_PORT: case COL_DEF_DST_PORT: case COL_DEF_SRC_PORT: + case COL_DELTA_TIME: + case COL_DELTA_TIME_DIS: right_justify = TRUE; break; -- cgit v1.2.1