colorscale: don't use focus-line-width

This commit is contained in:
Cosimo Cecchi 2014-05-04 20:41:41 +02:00
parent caa73b2128
commit 13649a3fbc

View File

@ -56,21 +56,20 @@ gtk_color_scale_get_trough_size (GtkColorScale *scale,
gint *height_out)
{
GtkWidget *widget = GTK_WIDGET (scale);
gint width, height, focus_line_width;
gint width, height;
gint x_offset, y_offset;
gint slider_width, slider_height;
gtk_widget_style_get (widget,
"focus-line-width", &focus_line_width,
"slider-width", &slider_width,
"slider-length", &slider_height,
NULL);
width = gtk_widget_get_allocated_width (widget) - 2 * (focus_line_width);
height = gtk_widget_get_allocated_height (widget) - 2 * (focus_line_width);
width = gtk_widget_get_allocated_width (widget);
height = gtk_widget_get_allocated_height (widget);
x_offset = focus_line_width;
y_offset = focus_line_width;
x_offset = 0;
y_offset = 0;
/* if the slider has a vertical shape, draw the trough asymmetric */
if (slider_width > slider_height)