summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Denis Doria <denisdoria@gmail.com>2016-06-01 13:37:50 +0200
committerLibravatar Denis Doria <denisdoria@gmail.com>2016-06-01 13:37:50 +0200
commit0ad7857f909278fde8603b995d59b86437d5247f (patch)
tree25364b13d60ef443fc09f66d3886c477c46868b6 /include
parentMerge pull request #686 from zandrmartin/fix-swaybar-in-08bef67 (diff)
downloadsway-0ad7857f909278fde8603b995d59b86437d5247f.tar.gz
sway-0ad7857f909278fde8603b995d59b86437d5247f.tar.zst
sway-0ad7857f909278fde8603b995d59b86437d5247f.zip
Included option floating_minimum_size
Values cannot be negative or 0; if so uses the default 75x50. Uses the same syntax as i3: floating_minimum_size <width> x <height>, although the x can be anything.
Diffstat (limited to 'include')
-rw-r--r--include/config.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h
index 1a6ba19d..9e59cb66 100644
--- a/include/config.h
+++ b/include/config.h
@@ -227,11 +227,12 @@ struct sway_config {
227 uint32_t background; 227 uint32_t background;
228 } border_colors; 228 } border_colors;
229 229
230 // floating view minimum 230 // floating view
231 int32_t floating_maximum_width; 231 int32_t floating_maximum_width;
232 int32_t floating_maximum_height; 232 int32_t floating_maximum_height;
233 int32_t floating_minimum_width; 233 int32_t floating_minimum_width;
234 int32_t floating_minimum_height; 234 int32_t floating_minimum_height;
235 char *floating_minimum_size;
235}; 236};
236 237
237/** 238/**