aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seatop_default.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/input/seatop_default.c')
-rw-r--r--sway/input/seatop_default.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seatop_default.c b/sway/input/seatop_default.c
index 68c617e4..088ba545 100644
--- a/sway/input/seatop_default.c
+++ b/sway/input/seatop_default.c
@@ -59,7 +59,7 @@ static bool edge_is_external(struct sway_container *cont, enum wlr_edges edge) {
static enum wlr_edges find_edge(struct sway_container *cont,
struct wlr_surface *surface, struct sway_cursor *cursor) {
- if (!cont->view || cont->view->surface != surface) {
+ if (!cont->view || (surface && cont->view->surface != surface)) {
return WLR_EDGE_NONE;
}
if (cont->border == B_NONE || !cont->border_thickness ||