mirror of
https://github.com/swaywm/sway.git
synced 2025-10-31 22:25:26 -04:00
gaps: remove duplicate inner gaps
This commit is contained in:
parent
4a21981855
commit
6a42643784
3 changed files with 34 additions and 18 deletions
|
|
@ -104,7 +104,12 @@ struct sway_container {
|
|||
bool border_right;
|
||||
|
||||
// The gaps currently applied to the container.
|
||||
double current_gaps;
|
||||
struct {
|
||||
int top;
|
||||
int right;
|
||||
int bottom;
|
||||
int left;
|
||||
} current_gaps;
|
||||
|
||||
struct sway_workspace *workspace; // NULL when hidden in the scratchpad
|
||||
struct sway_container *parent; // NULL if container in root of workspace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue