Browse Source

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

win-capture: Add additional exe to window capture blacklist
Jim 6 years ago
parent
commit
6b9302db8f
1 changed files with 11 additions and 0 deletions
  1. 11 0
      plugins/win-capture/window-helpers.c

+ 11 - 0
plugins/win-capture/window-helpers.c

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