summaryrefslogtreecommitdiff
path: root/gtk/gtklistbox.c
diff options
context:
space:
mode:
authorPaolo Borelli <pborelli@gnome.org>2014-07-13 15:45:21 +0200
committerPaolo Borelli <pborelli@gnome.org>2014-07-13 15:47:03 +0200
commit808705327db9957026ea7ca9500cd960cfbab231 (patch)
treebc64e8dc6b5e9f127fb7917de8daf13a94509605 /gtk/gtklistbox.c
parent3e48fc8878e5118fc5eade62059c5eb1898f03d5 (diff)
downloadgtk+-808705327db9957026ea7ca9500cd960cfbab231.tar.gz
list-box: fix typo in natural size computation
Diffstat (limited to 'gtk/gtklistbox.c')
-rw-r--r--gtk/gtklistbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c
index b9d63554d3..2958a3ad23 100644
--- a/gtk/gtklistbox.c
+++ b/gtk/gtklistbox.c
@@ -3028,7 +3028,7 @@ gtk_list_box_row_get_preferred_width (GtkWidget *widget,
&child_min, &child_natural);
*minimum_width_out = full_border.left + child_min + full_border.right;
- *natural_width_out = full_border.left + child_natural + full_border.bottom;
+ *natural_width_out = full_border.left + child_natural + full_border.right;
}
static void