table-layout: Remove dead code
If a column/row is expanding, n_expand has to be greater than 1. https://bugzilla.gnome.org/show_bug.cgi?id=672557
This commit is contained in:
parent
8c0be4181b
commit
40c345a42a
@ -1001,12 +1001,8 @@ calculate_col_widths (ClutterTableLayout *self,
|
|||||||
{
|
{
|
||||||
if (columns[i].expand)
|
if (columns[i].expand)
|
||||||
{
|
{
|
||||||
if (n_expand)
|
|
||||||
columns[i].final_size = columns[i].pref_size
|
columns[i].final_size = columns[i].pref_size
|
||||||
+ (extra_width / n_expand);
|
+ (extra_width / n_expand);
|
||||||
else
|
|
||||||
columns[i].final_size = columns[i].pref_size
|
|
||||||
+ (extra_width / priv->n_cols);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
columns[i].final_size = columns[i].pref_size;
|
columns[i].final_size = columns[i].pref_size;
|
||||||
@ -1289,12 +1285,8 @@ calculate_row_heights (ClutterTableLayout *self,
|
|||||||
{
|
{
|
||||||
if (rows[i].expand)
|
if (rows[i].expand)
|
||||||
{
|
{
|
||||||
if (n_expand)
|
|
||||||
rows[i].final_size = rows[i].pref_size
|
rows[i].final_size = rows[i].pref_size
|
||||||
+ (extra_height / n_expand);
|
+ (extra_height / n_expand);
|
||||||
else
|
|
||||||
rows[i].final_size = rows[i].pref_size
|
|
||||||
+ (extra_height / priv->n_rows);
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
rows[i].final_size = rows[i].pref_size;
|
rows[i].final_size = rows[i].pref_size;
|
||||||
|
Loading…
Reference in New Issue
Block a user