aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorDenis Doria <denisdoria@gmail.com>2016-06-01 13:37:50 +0200
committerDenis Doria <denisdoria@gmail.com>2016-06-01 13:37:50 +0200
commit0ad7857f909278fde8603b995d59b86437d5247f (patch)
tree25364b13d60ef443fc09f66d3886c477c46868b6 /include/config.h
parent4d6be1b6404a1c1bbb75d0862eee28412fffc1ef (diff)
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/config.h')
-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 {
uint32_t background;
} border_colors;
- // floating view minimum
+ // floating view
int32_t floating_maximum_width;
int32_t floating_maximum_height;
int32_t floating_minimum_width;
int32_t floating_minimum_height;
+ char *floating_minimum_size;
};
/**