Browse Source

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
Matt Gajownik 7 years ago
parent
commit
d2538690b5
1 changed files with 2 additions and 0 deletions
  1. 2 0
      plugins/win-capture/game-capture.c

+ 2 - 0
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
 };