aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-04-17 08:11:50 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-04-17 08:11:50 +1000
commitbfd5834f4c1046c234ceaae212e65e045cd51460 (patch)
treefc789c66bd9c20bfc30307c3f675d9c4079b5c4c /include
parentImplement fullscreen. (diff)
downloadsway-bfd5834f4c1046c234ceaae212e65e045cd51460.tar.gz
sway-bfd5834f4c1046c234ceaae212e65e045cd51460.tar.zst
sway-bfd5834f4c1046c234ceaae212e65e045cd51460.zip
Feedback for fullscreen.
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/container.h1
-rw-r--r--include/sway/tree/view.h1
2 files changed, 0 insertions, 2 deletions
diff --git a/include/sway/tree/container.h b/include/sway/tree/container.h
index 22bd7240..0283584b 100644
--- a/include/sway/tree/container.h
+++ b/include/sway/tree/container.h
@@ -72,7 +72,6 @@ struct sway_container {
72 // For C_OUTPUT, this is the output position in layout coordinates 72 // For C_OUTPUT, this is the output position in layout coordinates
73 // For other types, this is the position in output-local coordinates 73 // For other types, this is the position in output-local coordinates
74 double x, y; 74 double x, y;
75 double saved_x, saved_y;
76 // does not include borders or gaps. 75 // does not include borders or gaps.
77 double width, height; 76 double width, height;
78 77
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 73d5f6c7..9dfd171f 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -42,7 +42,6 @@ struct sway_view {
42 struct sway_container *swayc; // NULL for unmanaged views 42 struct sway_container *swayc; // NULL for unmanaged views
43 struct wlr_surface *surface; // NULL for unmapped views 43 struct wlr_surface *surface; // NULL for unmapped views
44 int width, height; 44 int width, height;
45 int saved_width, saved_height;
46 bool is_fullscreen; 45 bool is_fullscreen;
47 46
48 union { 47 union {