aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
authorLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-10-31 21:27:38 +1000
committerLibravatar Ryan Dwyer <ryandwyer1@gmail.com>2018-11-01 18:09:51 +1000
commit9fc736f4e1804b06538191786500f927ba0cda13 (patch)
tree8399de2ba00a8a0dd57f49dfc30455c330500b54 /sway/desktop/output.c
parentMerge pull request #3040 from RyanDwyer/border-props-to-container (diff)
downloadsway-9fc736f4e1804b06538191786500f927ba0cda13.tar.gz
sway-9fc736f4e1804b06538191786500f927ba0cda13.tar.zst
sway-9fc736f4e1804b06538191786500f927ba0cda13.zip
Move view marks properties to container struct
Like border properties, this will be needed to implement layout saving and restoring.
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 4d6c0336..2b90f151 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -532,9 +532,7 @@ static void handle_transform(struct wl_listener *listener, void *data) {
532 532
533static void update_textures(struct sway_container *con, void *data) { 533static void update_textures(struct sway_container *con, void *data) {
534 container_update_title_textures(con); 534 container_update_title_textures(con);
535 if (con->view) { 535 container_update_marks_textures(con);
536 view_update_marks_textures(con->view);
537 }
538} 536}
539 537
540static void handle_scale(struct wl_listener *listener, void *data) { 538static void handle_scale(struct wl_listener *listener, void *data) {