0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

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
This commit is contained in:
Matt Gajownik 2018-08-20 20:20:04 +10:00
parent d180f19a5f
commit d2538690b5

View File

@ -923,6 +923,8 @@ static const char *blacklisted_exes[] = {
"shellexperiencehost",
"winstore.app",
"searchui",
"lockapp",
"windowsinternal.composableshell.experiences.textinput.inputapp",
NULL
};