aboutsummaryrefslogtreecommitdiffstats
path: root/sway/desktop/output.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/desktop/output.c')
-rw-r--r--sway/desktop/output.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sway/desktop/output.c b/sway/desktop/output.c
index 43ed9793..1e4f196b 100644
--- a/sway/desktop/output.c
+++ b/sway/desktop/output.c
@@ -144,15 +144,16 @@ void output_view_for_each_surface(struct sway_output *output,
144 .user_iterator = iterator, 144 .user_iterator = iterator,
145 .user_data = user_data, 145 .user_data = user_data,
146 .output = output, 146 .output = output,
147 .ox = view->swayc->current.view_x - output->swayc->current.swayc_x, 147 .ox = view->swayc->current.view_x - output->swayc->current.swayc_x
148 .oy = view->swayc->current.view_y - output->swayc->current.swayc_y, 148 - view->geometry.x,
149 .oy = view->swayc->current.view_y - output->swayc->current.swayc_y
150 - view->geometry.y,
149 .width = view->swayc->current.view_width, 151 .width = view->swayc->current.view_width,
150 .height = view->swayc->current.view_height, 152 .height = view->swayc->current.view_height,
151 .rotation = 0, // TODO 153 .rotation = 0, // TODO
152 }; 154 };
153 155
154 view_for_each_surface(view, 156 view_for_each_surface(view, output_for_each_surface_iterator, &data);
155 output_for_each_surface_iterator, &data);
156} 157}
157 158
158void output_view_for_each_popup(struct sway_output *output, 159void output_view_for_each_popup(struct sway_output *output,