aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-27 23:12:53 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-27 23:12:53 +0000
commit0a7b08c9e92daa56e62278946806008626a4ba51 (patch)
tree1908e0ebecb7a79c046a0ec0f661e721d57f9750 /gtk
parent4b1fda78b999efa94283510d8b4cbf4763976491 (diff)
Don't draw a Y-axis label if you haven't constructed the label string.
svn path=/trunk/; revision=8792
Diffstat (limited to 'gtk')
-rw-r--r--gtk/io_stat.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/gtk/io_stat.c b/gtk/io_stat.c
index 07ba9daf7b..37a9f37665 100644
--- a/gtk/io_stat.c
+++ b/gtk/io_stat.c
@@ -1,7 +1,7 @@
/* io_stat.c
* io_stat 2002 Ronnie Sahlberg
*
- * $Id: io_stat.c,v 1.46 2003/10/26 03:09:03 sahlberg Exp $
+ * $Id: io_stat.c,v 1.47 2003/10/27 23:12:53 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -698,24 +698,24 @@ gtk_iostat_draw(void *g)
} else {
sprintf(label_string,"%d", max_y*i/10);
}
- }
#if GTK_MAJOR_VERSION < 2
- lwidth=gdk_string_width(font, label_string);
- gdk_draw_string(io->pixmap,
- font,
- io->draw_area->style->black_gc,
- io->pixmap_width-right_x_border+15+label_width-lwidth,
- io->pixmap_height-bottom_y_border-draw_height*i/10+label_height/2,
- label_string);
+ lwidth=gdk_string_width(font, label_string);
+ gdk_draw_string(io->pixmap,
+ font,
+ io->draw_area->style->black_gc,
+ io->pixmap_width-right_x_border+15+label_width-lwidth,
+ io->pixmap_height-bottom_y_border-draw_height*i/10+label_height/2,
+ label_string);
#else
- pango_layout_set_text(layout, label_string, -1);
- pango_layout_get_pixel_size(layout, &lwidth, NULL);
- gdk_draw_layout(io->pixmap,
- io->draw_area->style->black_gc,
- io->pixmap_width-right_x_border+15+label_width-lwidth,
- io->pixmap_height-bottom_y_border-draw_height*i/10-label_height/2,
- layout);
+ pango_layout_set_text(layout, label_string, -1);
+ pango_layout_get_pixel_size(layout, &lwidth, NULL);
+ gdk_draw_layout(io->pixmap,
+ io->draw_area->style->black_gc,
+ io->pixmap_width-right_x_border+15+label_width-lwidth,
+ io->pixmap_height-bottom_y_border-draw_height*i/10-label_height/2,
+ layout);
#endif
+ }
}