diff options
author | infirit <[email protected]> | 2014-10-24 21:59:58 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2014-10-27 12:29:24 +0100 |
commit | bec068ef5ddc73f23ffd6298122bf818fd4d2084 (patch) | |
tree | d7db4682b85c601d069de72cf76dda77b8a5e8dc /src/core/constraints.c | |
parent | f814451acc48aec6d2fa1c217468f74e57a84340 (diff) | |
download | marco-bec068ef5ddc73f23ffd6298122bf818fd4d2084.tar.bz2 marco-bec068ef5ddc73f23ffd6298122bf818fd4d2084.tar.xz |
Rework tiling code based off Consortium
Taken from
https://github.com/SolusOS-discontinued/consortium/commit/b463e03f5bdeab307ceee6b969c681f29537c76d
Diffstat (limited to 'src/core/constraints.c')
-rw-r--r-- | src/core/constraints.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/constraints.c b/src/core/constraints.c index 68cf5ae1..656d1529 100644 --- a/src/core/constraints.c +++ b/src/core/constraints.c @@ -748,8 +748,10 @@ constrain_maximization (MetaWindow *window, return TRUE; /* Calculate target_size = maximized size of (window + frame) */ - if (window->maximized_horizontally && window->maximized_vertically) - target_size = info->work_area_xinerama; + if (META_WINDOW_MAXIMIZED (window)) + { + target_size = info->work_area_xinerama; + } else { /* Amount of maximization possible in a single direction depends |