diff --git a/src/view.c b/src/view.c index 192e02c4..44349cfd 100644 --- a/src/view.c +++ b/src/view.c @@ -660,6 +660,9 @@ view_snap_to_edge(struct view *view, const char *direction) wlr_log(WLR_ERROR, "no view"); return; } + if (view->fullscreen) { + return; + } struct output *output = view_output(view); if (!output) { wlr_log(WLR_ERROR, "no output");