mirror of
https://github.com/swaywm/sway.git
synced 2025-10-29 05:40:18 -04:00
Rework gaps code to be simpler and correct
Instead of tracking gaps per child apply gaps in two logical places: 1. In tiled containers use the layout code to add the gaps between windows. This is much simpler and guarantees that the sizing of children is correct. 2. In the workspace itself apply all the gaps around the edge. Here we're in the correct position to size inner and outer gaps correctly and decide on smart gaps in a single location. Fixes #4296
This commit is contained in:
parent
2dc4978d8a
commit
d0233af3b3
6 changed files with 53 additions and 136 deletions
|
|
@ -116,14 +116,6 @@ struct sway_container {
|
|||
bool border_left;
|
||||
bool border_right;
|
||||
|
||||
// The gaps currently applied to the container.
|
||||
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
|
||||
list_t *children; // struct sway_container
|
||||
|
|
@ -296,10 +288,6 @@ struct sway_output *container_get_effective_output(struct sway_container *con);
|
|||
|
||||
void container_discover_outputs(struct sway_container *con);
|
||||
|
||||
void container_remove_gaps(struct sway_container *container);
|
||||
|
||||
void container_add_gaps(struct sway_container *container);
|
||||
|
||||
enum sway_container_layout container_parent_layout(struct sway_container *con);
|
||||
|
||||
enum sway_container_layout container_current_parent_layout(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue