diff options
| author | Drew DeVault <sir@cmpwn.com> | 2018-11-01 13:01:15 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-01 13:01:15 +0100 | 
| commit | 8ad06f0ec554da0ded551fc1b83f9cd0b3fa2a27 (patch) | |
| tree | 8399de2ba00a8a0dd57f49dfc30455c330500b54 /sway/commands/client.c | |
| parent | 480b03b734e6d1d068859b254d8ace4fb07b2c54 (diff) | |
| parent | 9fc736f4e1804b06538191786500f927ba0cda13 (diff) | |
| download | sway-8ad06f0ec554da0ded551fc1b83f9cd0b3fa2a27.tar.xz | |
Merge pull request #3041 from RyanDwyer/marks-props-to-container
Move view marks properties to container struct
Diffstat (limited to 'sway/commands/client.c')
| -rw-r--r-- | sway/commands/client.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/sway/commands/client.c b/sway/commands/client.c index 9f54fa94..746e8713 100644 --- a/sway/commands/client.c +++ b/sway/commands/client.c @@ -5,9 +5,7 @@  #include "sway/tree/container.h"  static void rebuild_textures_iterator(struct sway_container *con, void *data) { -	if (con->view) { -		view_update_marks_textures(con->view); -	} +	container_update_marks_textures(con);  	container_update_title_textures(con);  } | 
