diff options
author | Owen Taylor <otaylor@src.gnome.org> | 1998-08-04 15:07:55 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 1998-08-04 15:07:55 +0000 |
commit | ed3c12aa5f1d10206d66216fd05f19c92d6d19bd (patch) | |
tree | 469935d32fde2e50045efc7496cbf13b9d17acb8 /gtk/gtktable.c | |
parent | f7a530361227d2e45f6df7ac786c3c7ca2c3b774 (diff) | |
download | gtk+-ed3c12aa5f1d10206d66216fd05f19c92d6d19bd.tar.gz |
Added missing elsemerge-to-themes-2-1
Diffstat (limited to 'gtk/gtktable.c')
-rw-r--r-- | gtk/gtktable.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gtk/gtktable.c b/gtk/gtktable.c index 08a27ab533..b6884eeb1c 100644 --- a/gtk/gtktable.c +++ b/gtk/gtktable.c @@ -1234,12 +1234,13 @@ gtk_table_size_allocate_init (GtkTable *table) table->rows[row].expand = FALSE; table->rows[row].shrink = FALSE; } - { - if (table->rows[row].need_expand) - table->rows[row].expand = TRUE; - if (!table->rows[row].need_shrink) - table->rows[row].shrink = FALSE; - } + else + { + if (table->rows[row].need_expand) + table->rows[row].expand = TRUE; + if (!table->rows[row].need_shrink) + table->rows[row].shrink = FALSE; + } } } |