[gtk+/wip/focusprops: 17/48] listbox: don't use focus padding
- From: Cosimo Cecchi <cosimoc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/focusprops: 17/48] listbox: don't use focus padding
- Date: Mon, 5 May 2014 03:54:35 +0000 (UTC)
commit 3957729c8264de761f9f6457716fe6b0f7eb96a3
Author: Cosimo Cecchi <cosimoc gnome org>
Date: Fri May 2 02:03:14 2014 +0200
listbox: don't use focus padding
gtk/gtklistbox.c | 22 ++++++++--------------
1 files changed, 8 insertions(+), 14 deletions(-)
---
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c
index 62aefe5..b62bec3 100644
--- a/gtk/gtklistbox.c
+++ b/gtk/gtklistbox.c
@@ -2908,7 +2908,6 @@ gtk_list_box_row_draw (GtkWidget *widget,
GtkStyleContext* context;
GtkStateFlags state;
GtkBorder border;
- gint focus_pad;
gtk_widget_get_allocation (widget, &allocation);
context = gtk_widget_get_style_context (widget);
@@ -2920,13 +2919,9 @@ gtk_list_box_row_draw (GtkWidget *widget,
if (gtk_widget_has_visible_focus (GTK_WIDGET (row)))
{
gtk_style_context_get_border (context, state, &border);
-
- gtk_style_context_get_style (context,
- "focus-padding", &focus_pad,
- NULL);
- gtk_render_focus (context, cr, border.left + focus_pad, border.top + focus_pad,
- allocation.width - 2 * focus_pad - border.left - border.right,
- allocation.height - 2 * focus_pad - border.top - border.bottom);
+ gtk_render_focus (context, cr, border.left, border.top,
+ allocation.width - border.left - border.right,
+ allocation.height - border.top - border.bottom);
}
GTK_WIDGET_CLASS (gtk_list_box_row_parent_class)->draw (widget, cr);
@@ -2942,7 +2937,7 @@ gtk_list_box_row_get_full_border (GtkListBoxRow *row,
GtkStyleContext *context;
GtkStateFlags state;
GtkBorder padding, border;
- int focus_width, focus_pad;
+ int focus_width;
context = gtk_widget_get_style_context (widget);
state = gtk_style_context_get_state (context);
@@ -2951,13 +2946,12 @@ gtk_list_box_row_get_full_border (GtkListBoxRow *row,
gtk_style_context_get_border (context, state, &border);
gtk_style_context_get_style (context,
"focus-line-width", &focus_width,
- "focus-padding", &focus_pad,
NULL);
- full_border->left = padding.left + border.left + focus_width + focus_pad;
- full_border->right = padding.right + border.right + focus_width + focus_pad;
- full_border->top = padding.top + border.top + focus_width + focus_pad;
- full_border->bottom = padding.bottom + border.bottom + focus_width + focus_pad;
+ full_border->left = padding.left + border.left + focus_width;
+ full_border->right = padding.right + border.right + focus_width;
+ full_border->top = padding.top + border.top + focus_width;
+ full_border->bottom = padding.bottom + border.bottom + focus_width;
}
static void gtk_list_box_row_get_preferred_height_for_width (GtkWidget *widget,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]