0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

Merge pull request #2129 from Fenrirthviti/win-blacklist-update

win-capture: Add additional exe to window capture blacklist
This commit is contained in:
Jim 2019-10-21 23:23:23 -07:00 committed by jp9000
parent 8c5d22e12c
commit 6b9302db8f

View File

@ -128,12 +128,23 @@ void get_window_class(struct dstr *class, HWND hwnd)
/* not capturable or internal windows */ /* not capturable or internal windows */
static const char *internal_microsoft_exes[] = { static const char *internal_microsoft_exes[] = {
"startmenuexperiencehost",
"applicationframehost", "applicationframehost",
"peopleexperiencehost",
"shellexperiencehost", "shellexperiencehost",
"microsoft.notes",
"windowsinternal", "windowsinternal",
"systemsettings",
"textinputhost",
"winstore.app", "winstore.app",
"searchapp",
"video.ui",
"searchui", "searchui",
"lockapp", "lockapp",
"cortana",
"gamebar",
"tabtip",
"time",
NULL, NULL,
}; };