mirror of
https://github.com/labwc/labwc.git
synced 2026-04-13 08:21:15 -04:00
view: fix early return condition
This commit is contained in:
parent
6ee94c99a7
commit
ab8aa0623a
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