[gtk+] ColorChooser: Fix an off-by-one error
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+] ColorChooser: Fix an off-by-one error
- Date: Thu, 9 Oct 2014 04:14:22 +0000 (UTC)
commit c9420aa1a330091ffa012e66b4ad8fa766d5d2cb
Author: Matthias Clasen <mclasen redhat com>
Date: Thu Oct 9 00:12:46 2014 -0400
ColorChooser: Fix an off-by-one error
We were not filling the last free space in the custom color
row.
gtk/gtkcolorchooserwidget.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/gtk/gtkcolorchooserwidget.c b/gtk/gtkcolorchooserwidget.c
index 58e0c6c..1076943 100644
--- a/gtk/gtkcolorchooserwidget.c
+++ b/gtk/gtkcolorchooserwidget.c
@@ -570,7 +570,7 @@ gtk_color_chooser_widget_init (GtkColorChooserWidget *cc)
connect_custom_signals (p, cc);
gtk_container_add (GTK_CONTAINER (box), p);
- if (i == 8)
+ if (i == 9)
break;
}
g_variant_unref (variant);
@@ -734,7 +734,7 @@ add_custom_color (GtkColorChooserWidget *cc,
GList *children;
children = gtk_container_get_children (GTK_CONTAINER (cc->priv->custom));
- if (g_list_length (children) >= 8)
+ if (g_list_length (children) >= 9)
{
last = g_list_last (children)->data;
gtk_widget_destroy (last);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]