summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2014-05-04 20:12:37 +0200
committerCosimo Cecchi <cosimoc@gnome.org>2014-05-09 11:02:45 -0700
commit8fff30090b3e23bd29cce8e15fe2c7900ebd1e5f (patch)
treecb9d1afa885e38c29b83aefe24ab8fbab5120608 /gtk
parenta32260660b334d3009b92ac78b17033318f05a6b (diff)
downloadgtk+-8fff30090b3e23bd29cce8e15fe2c7900ebd1e5f.tar.gz
radiobutton: don't use focus-line-width
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkradiobutton.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/gtk/gtkradiobutton.c b/gtk/gtkradiobutton.c
index be52b50bda..e1bd0d52ca 100644
--- a/gtk/gtkradiobutton.c
+++ b/gtk/gtkradiobutton.c
@@ -867,14 +867,12 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
{
GtkAllocation allocation;
GtkWidget *widget;
- GtkWidget *child;
GtkButton *button;
GtkToggleButton *toggle_button;
GtkStyleContext *context;
GtkStateFlags state = 0;
gint x, y;
gint indicator_size, indicator_spacing;
- gint focus_width;
gint baseline;
guint border_width;
@@ -885,11 +883,6 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
state = gtk_widget_get_state_flags (widget);
border_width = gtk_container_get_border_width (GTK_CONTAINER (widget));
-
- gtk_widget_style_get (widget,
- "focus-line-width", &focus_width,
- NULL);
-
_gtk_check_button_get_props (check_button, &indicator_size, &indicator_spacing);
gtk_widget_get_allocation (widget, &allocation);
@@ -902,10 +895,6 @@ gtk_radio_button_draw_indicator (GtkCheckButton *check_button,
y = CLAMP (baseline - indicator_size * button->priv->baseline_align,
0, allocation.height - indicator_size);
- child = gtk_bin_get_child (GTK_BIN (check_button));
- if (!(child && gtk_widget_get_visible (child)))
- x += focus_width;
-
state &= ~(GTK_STATE_FLAG_INCONSISTENT |
GTK_STATE_FLAG_ACTIVE |
GTK_STATE_FLAG_SELECTED |