From b093a5d16f5e686f70e1ff20829246fecc840a5f Mon Sep 17 00:00:00 2001
From: "S. Christoffer Eliesen" <christoffer@eliesen.no>
Date: Thu, 22 Oct 2015 23:07:27 +0200
Subject: [PATCH] handlers: Fix swapped top/bottom for seamless transitions.

---
 sway/handlers.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sway/handlers.c b/sway/handlers.c
index 6d3f48aae..6120e6636 100644
--- a/sway/handlers.c
+++ b/sway/handlers.c
@@ -398,7 +398,7 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct
 				if (output->x == c->x && c->y + c->height == output->y) {
 					sway_log(L_DEBUG, "%s is below %s", output->name, c->name);
 					workspace_switch(c);
-					new_origin.y = 0;
+					new_origin.y = c->height;
 				}
 			}
 		} else if ((double)origin->y == output->height) { // Bottom edge
@@ -410,7 +410,7 @@ static bool handle_pointer_motion(wlc_handle handle, uint32_t time, const struct
 				if (output->x == c->x && output->y + output->height == c->y) {
 					sway_log(L_DEBUG, "%s is above %s", output->name, c->name);
 					workspace_switch(c);
-					new_origin.y = c->height;
+					new_origin.y = 0;
 				}
 			}
 		}