summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Kalyan Sriram <coder.kalyan@gmail.com>2020-06-05 05:13:18 -0700
committerLibravatar GitHub <noreply@github.com>2020-06-05 14:13:18 +0200
commite3e548a64861749474d87904875655904023b335 (patch)
tree4e359af42d43bce36810bcd87fdaa0ec70a0a81c /include
parentinput/cursor: refactor tablet tool tip events into seatops (diff)
downloadsway-e3e548a64861749474d87904875655904023b335.tar.gz
sway-e3e548a64861749474d87904875655904023b335.tar.zst
sway-e3e548a64861749474d87904875655904023b335.zip
Save transform during transaction
Closes: https://github.com/swaywm/sway/issues/5412
Diffstat (limited to 'include')
-rw-r--r--include/sway/tree/view.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h
index 53c5d34e..8898cde5 100644
--- a/include/sway/tree/view.h
+++ b/include/sway/tree/view.h
@@ -59,6 +59,7 @@ struct sway_saved_buffer {
59 struct wlr_client_buffer *buffer; 59 struct wlr_client_buffer *buffer;
60 int x, y; 60 int x, y;
61 int width, height; 61 int width, height;
62 enum wl_output_transform transform;
62 struct wl_list link; // sway_view::saved_buffers 63 struct wl_list link; // sway_view::saved_buffers
63}; 64};
64 65