Browse Source

linux-capture: Set xcomposite capture retry interval to 2sec

Half a second was a bit too often and was spamming the debug logging
when a window wasn't found.
Lain 1 year ago
parent
commit
c837d3b533
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/linux-capture/xcomposite-input.c

+ 1 - 1
plugins/linux-capture/xcomposite-input.c

@@ -23,7 +23,7 @@
 #include <util/darray.h>
 
 #define WIN_STRING_DIV "\r\n"
-#define FIND_WINDOW_INTERVAL 0.5
+#define FIND_WINDOW_INTERVAL 2.0
 
 static Display *disp = NULL;
 static xcb_connection_t *conn = NULL;