Hi folks,
I have noticed some complaining about the lack of thousands separators
on the ticks, especially on the vertical axis. Certainly, I find it a
pain.
The following patch might fix the problem. I don't currently have a
capture that I can check this with. Perhaps tomorrow I will remember
to bring one how that shows more than three digits ...
[rsharpe@localhost wireshark]$ svn diff ui/gtk/tcp_graph.c
Index: ui/gtk/tcp_graph.c
===================================================================
--- ui/gtk/tcp_graph.c (revision 43186)
+++ ui/gtk/tcp_graph.c (working copy)
@@ -2767,7 +2767,7 @@
break;
y = y - floor (y);
}
- g_snprintf (str, sizeof(str), "%.*f", rdigits, label);
+ g_snprintf (str, sizeof(str), "%'*f", rdigits, label);
switch (dir) {
case AXIS_HORIZONTAL:
layout = gtk_widget_create_pango_layout(axis->g->drawing_area,
--
Regards,
Richard Sharpe
(何以解憂?唯有杜康。--曹操)