From eaa64de5756af928a9c35c230d65ec87893e02f8 Mon Sep 17 00:00:00 2001 From: Thayne McCombs Date: Tue, 25 Aug 2020 00:59:50 -0600 Subject: [PATCH] Remove test for seat->wl_pointer in render.c This test probably results in not rendering selection on touch devices. --- render.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/render.c b/render.c index af2bfd9..2bb0f15 100644 --- a/render.c +++ b/render.c @@ -54,7 +54,7 @@ void render(struct slurp_output *output) { &seat->touch_selection : &seat->pointer_selection; - if (!seat->wl_pointer || !current_selection->has_selection) { + if (!current_selection->has_selection) { continue; }