mirror of
https://github.com/labwc/labwc.git
synced 2025-11-03 09:01:51 -05:00
view: fix early return condition
This commit is contained in:
parent
945eea8f27
commit
10d417258a
1 changed files with 1 additions and 1 deletions
|
|
@ -763,7 +763,7 @@ view_constrain_size_to_that_of_usable_area(struct view *view)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (available_height >= view->pending.height &&
|
if (available_height >= view->pending.height &&
|
||||||
available_width >= view->pending.height) {
|
available_width >= view->pending.width) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue