diff options
author | rbuj <[email protected]> | 2020-08-04 10:39:44 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-08-04 16:39:25 +0200 |
commit | 85a22e754cd1f43e178e4a81c182643d4319bc5b (patch) | |
tree | ec52f20880ba991d7abcc863de2a9c302ddf2d41 /src/core/constraints.c | |
parent | 29f0d1d7ddd859433bf953fba3861a4746b3f09a (diff) | |
download | marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.bz2 marco-85a22e754cd1f43e178e4a81c182643d4319bc5b.tar.xz |
Remove trailing spaces/tabs
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/[[:space:]]*$//' {} \;
find . \( -name '*.h' -o -name '*.c' \) -exec sed -i 's/\t*$//' {} \;
Diffstat (limited to 'src/core/constraints.c')
-rw-r--r-- | src/core/constraints.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/constraints.c b/src/core/constraints.c index 64ce497a..99b4077e 100644 --- a/src/core/constraints.c +++ b/src/core/constraints.c @@ -953,7 +953,7 @@ constrain_tiling (MetaWindow *window, info->resize_gravity, &allow_resize_horizontally, &allow_resize_vertically); - + window->tile_resized = TRUE; } @@ -974,11 +974,11 @@ constrain_tiling (MetaWindow *window, } if(!allow_resize_horizontally) - { + { info->current.x = target_size.x; info->current.width = target_size.width; } - + return TRUE; } |