aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authorRyan Dwyer <ryandwyer1@gmail.com>2018-05-01 19:59:36 +1000
committerDrew DeVault <sir@cmpwn.com>2018-05-01 07:46:57 -0400
commit83952c52019ceee95e9293398bdc5f723db773eb (patch)
tree5e922911c47af879ccb86c62f6ab2c472f9e5d61 /sway
parent55577498c0b9b3e330351f14704c4bbb0ea10dff (diff)
Restore view_update_position()
Diffstat (limited to 'sway')
-rw-r--r--sway/tree/view.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 4903b3a4..05a9b277 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -353,6 +353,19 @@ void view_unmap(struct sway_view *view) {
}
}
+void view_update_position(struct sway_view *view, double ox, double oy) {
+ if (view->swayc->x == ox && view->swayc->y == oy) {
+ return;
+ }
+
+ // TODO: Only allow this if the view is floating (this function will only be
+ // called in response to wayland clients wanting to reposition themselves).
+ view_damage(view, true);
+ view->swayc->x = ox;
+ view->swayc->y = oy;
+ view_damage(view, true);
+}
+
void view_update_size(struct sway_view *view, int width, int height) {
if (view->width == width && view->height == height) {
return;