From d2538690b5dd04f8b8d757efaf7c88ba7fd94cb3 Mon Sep 17 00:00:00 2001 From: Matt Gajownik Date: Mon, 20 Aug 2018 20:20:04 +1000 Subject: [PATCH] UI: Blacklist LockApp and Text Input from Game Capture Occasionally users accidentally select the following applications built into Windows 10 using game capture, which cannot be captured. This PR simply hides them from the game capture list. The latter takes up 6 entries in the dropdown. LockApp.exe - the lock screen which doesn't run in user space WindowsInternal.ComposableShell.Experiences.TextInput.InputApp --- plugins/win-capture/game-capture.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/win-capture/game-capture.c b/plugins/win-capture/game-capture.c index 12e996bac..3ca783ed9 100644 --- a/plugins/win-capture/game-capture.c +++ b/plugins/win-capture/game-capture.c @@ -923,6 +923,8 @@ static const char *blacklisted_exes[] = { "shellexperiencehost", "winstore.app", "searchui", + "lockapp", + "windowsinternal.composableshell.experiences.textinput.inputapp", NULL };