From: Jim Evins Date: Sun, 31 Aug 2003 01:42:47 +0000 (+0000) Subject: gl_wdgt_line_get_params(): Line width is double, not int! X-Git-Tag: glabels-2_3_0~612 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=4c60c14f0536b5733898c93d3a9f1a61cf15f6b2;p=glabels gl_wdgt_line_get_params(): Line width is double, not int! git-svn-id: https://glabels.svn.sourceforge.net/svnroot/glabels/trunk@277 f5e0f49d-192f-0410-a22d-a8d8700d0965 --- diff --git a/glabels2/src/wdgt-line.c b/glabels2/src/wdgt-line.c index 3e7c047f..8682c647 100644 --- a/glabels2/src/wdgt-line.c +++ b/glabels2/src/wdgt-line.c @@ -220,8 +220,7 @@ gl_wdgt_line_get_params (glWdgtLine *line, guint8 r, g, b, a; *width = - gtk_spin_button_get_value_as_int (GTK_SPIN_BUTTON - (line->width_spin)); + gtk_spin_button_get_value (GTK_SPIN_BUTTON(line->width_spin)); gnome_color_picker_get_i8 (GNOME_COLOR_PICKER (line->color_picker), &r, &g, &b, &a);