Initial work for floating view with sane values

This commit is contained in:
Denis Doria 2016-05-31 14:59:33 +02:00
parent 9d7d73df7f
commit f1d5b89d3e
5 changed files with 40 additions and 0 deletions

View file

@ -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;
};
/**