From 477f90620d00639c98bf4c831507b802ded761b8 Mon Sep 17 00:00:00 2001 From: jpark37 Date: Wed, 13 May 2020 07:54:41 -0700 Subject: [PATCH] win-capture: Reset WGC fail flag for new window WGC will give up on a window that it fails to capture, but that shouldn't stop it from attempting to capture new windows. Fixes #2928. --- plugins/win-capture/window-capture.c | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/win-capture/window-capture.c b/plugins/win-capture/window-capture.c index f01d75fdd..498f49bf4 100644 --- a/plugins/win-capture/window-capture.c +++ b/plugins/win-capture/window-capture.c @@ -421,6 +421,7 @@ static void wc_tick(void *data, float seconds) return; } + wc->previously_failed = false; reset_capture = true; } else if (IsIconic(wc->window)) {