From 4ee10fdefa7343ffb5bfd5f4657fa421e2a51006 Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Mon, 18 Jan 1999 19:42:59 +0000 Subject: CLAMP digits into a meaningfull range (we need to stay below a certain Mon Jan 18 18:53:08 1999 Tim Janik * gtk/gtkscale.c (gtk_scale_set_digits): CLAMP digits into a meaningfull range (we need to stay below a certain limit anyways to avoid string buffer overflows). * gtk/gtkvscale.c (gtk_vscale_pos_background): fixed up background area calculations for GTK_POS_RIGHT and GTK_POS_BOTTOM. * gtk/gtkhscale.c (gtk_hscale_pos_background): likewise. (gtk_hscale_draw_value): safety CLAMP the value's x position for GTK_POS_TOP and GTK_POS_BOTTOM, so we don't paint strings outside of our allocation. * gtk/gtkscale.c: implemented GtkScale::digits, GtkScale::draw_value and GtkScale::value_pos arguments. --- gtk/gtkvscale.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gtk/gtkvscale.c') diff --git a/gtk/gtkvscale.c b/gtk/gtkvscale.c index cacf96426b..cb88083f90 100644 --- a/gtk/gtkvscale.c +++ b/gtk/gtkvscale.c @@ -459,14 +459,14 @@ gtk_vscale_pos_background (GtkVScale *vscale, *w -= twidth; break; case GTK_POS_RIGHT: - *x = tx; + *x += twidth; *w -= twidth; break; case GTK_POS_TOP: *h -= theight; break; case GTK_POS_BOTTOM: - *y = ty; + *y += theight; *h -= theight; break; } -- cgit v1.2.1