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 /sway/container.c | |
parent | 7f6b3d1c1f0727c8db623c18cc8a4fd948be995d (diff) | |
parent | 3c4c62301290991b790b90c840d18b398e0522c8 (diff) |
Merge pull request #685 from thuck/floating_size
Initial work for floating view with sane values
Diffstat (limited to 'sway/container.c')
-rw-r--r-- | sway/container.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sway/container.c b/sway/container.c index 4883a648..e00d2d7e 100644 --- a/sway/container.c +++ b/sway/container.c @@ -328,6 +328,31 @@ swayc_t *new_floating_view(wlc_handle handle) { return view; } +void floating_view_sane_size(swayc_t *view) { + if (config->floating_minimum_height != -1 && + view->desired_height < config->floating_minimum_height) { + view->desired_height = config->floating_minimum_height; + } + if (config->floating_minimum_width != -1 && + view->desired_width < config->floating_minimum_width) { + view->desired_width = config->floating_minimum_width; + } + + if (config->floating_maximum_height != -1 && + view->desired_height > config->floating_maximum_height) { + view->desired_height = config->floating_maximum_height; + } + if (config->floating_maximum_width != -1 && + view->desired_width > config->floating_maximum_width) { + view->desired_width = config->floating_maximum_width; + } + sway_log(L_DEBUG, "Sane values for view to %d x %d @ %.f, %.f", + view->desired_width, view->desired_height, view->x, view->y); + + return; +} + + // Destroy container swayc_t *destroy_output(swayc_t *output) { |