diff options
author | Ryan Dwyer <[email protected]> | 2018-04-30 21:24:13 +1000 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2018-05-01 07:46:57 -0400 |
commit | 630ba30e3c60cfe3f1018b4a1701f0c2a0f6da9a (patch) | |
tree | da0aa984dd39f3501c4d9facd5c6a2f340ab2da4 /include/sway/tree/container.h | |
parent | bf0603cd2d905554cc57d121b56b6708bb1d382b (diff) |
Implement borders
Implements rendering of borders. Title text is still to do.
Implements the following configuration directives:
* client.focused
* client.focused_inactive
* client.unfocused
* client.urgent
* border
* default_border
Diffstat (limited to 'include/sway/tree/container.h')
-rw-r--r-- | include/sway/tree/container.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h index 9c921fc4..d092af49 100644 --- a/include/sway/tree/container.h +++ b/include/sway/tree/container.h @@ -72,8 +72,8 @@ struct sway_container { // For C_ROOT, this has no meaning // For C_OUTPUT, this is the output position in layout coordinates // For other types, this is the position in output-local coordinates + // Includes borders double x, y; - // does not include borders or gaps. double width, height; double saved_width, saved_height; |