From 342c2e3c31c18c49b57cb2fa7a6630d72819b541 Mon Sep 17 00:00:00 2001 From: Bastien Dejean Date: Thu, 18 Apr 2019 17:58:48 +0200 Subject: [PATCH] Rely on the user layout to skip the presel fb Fixes #954. --- src/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.c b/src/window.c index 71e4259..1f5738f 100644 --- a/src/window.c +++ b/src/window.c @@ -288,7 +288,7 @@ void initialize_presel_feedback(node_t *n) void draw_presel_feedback(monitor_t *m, desktop_t *d, node_t *n) { - if (n == NULL || n->presel == NULL || d->layout == LAYOUT_MONOCLE || !presel_feedback) { + if (n == NULL || n->presel == NULL || d->user_layout == LAYOUT_MONOCLE || !presel_feedback) { return; } -- 2.44.0