diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-05-31 10:29:44 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-05-31 10:29:44 -0400 |
commit | df8caa29a71f041a8e94ff410274a598abfe9a81 (patch) | |
tree | 9665fbaac9e2f7d099d7c54715404032ea406551 /include/config.h | |
parent | 7f6b3d1c1f0727c8db623c18cc8a4fd948be995d (diff) | |
parent | 3c4c62301290991b790b90c840d18b398e0522c8 (diff) | |
download | sway-df8caa29a71f041a8e94ff410274a598abfe9a81.tar.xz |
Merge pull request #685 from thuck/floating_size
Initial work for floating view with sane values
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 3c1957b6..1a6ba19d 100644 --- a/include/config.h +++ b/include/config.h @@ -226,6 +226,12 @@ struct sway_config { struct border_colors placeholder; uint32_t background; } border_colors; + + // floating view minimum + int32_t floating_maximum_width; + int32_t floating_maximum_height; + int32_t floating_minimum_width; + int32_t floating_minimum_height; }; /** |