mirror of
https://github.com/swaywm/sway.git
synced 2025-11-04 13:29:52 -05:00
Merge remote-tracking branch 'upstream/master' into atomic
This commit is contained in:
commit
9e96cfd310
17 changed files with 507 additions and 41 deletions
|
|
@ -60,6 +60,11 @@ struct sway_container_state {
|
|||
double swayc_x, swayc_y;
|
||||
double swayc_width, swayc_height;
|
||||
|
||||
bool has_gaps;
|
||||
double current_gaps;
|
||||
double gaps_inner;
|
||||
double gaps_outer;
|
||||
|
||||
//struct sway_container *parent;
|
||||
//list_t *children;
|
||||
|
||||
|
|
@ -112,6 +117,13 @@ struct sway_container {
|
|||
double saved_x, saved_y;
|
||||
double saved_width, saved_height;
|
||||
|
||||
// The gaps currently applied to the container.
|
||||
double current_gaps;
|
||||
|
||||
bool has_gaps;
|
||||
double gaps_inner;
|
||||
double gaps_outer;
|
||||
|
||||
list_t *children;
|
||||
|
||||
struct sway_container *parent;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue