From f8e6d50b16d099f9ecc1ef1fe18290e2066dc598 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 11 Oct 2019 09:28:59 -0400 Subject: [PATCH] Patched to disable window title bar Have a look at ENG-367. We're applying this patch: https://github.com/Genymobile/scrcpy/issues/680 --- app/src/screen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/src/screen.c b/app/src/screen.c index e34bcf46..49aa7614 100644 --- a/app/src/screen.c +++ b/app/src/screen.c @@ -153,6 +153,8 @@ screen_init_rendering(struct screen *screen, const char *window_title, #endif } + window_flags |= SDL_WINDOW_BORDERLESS; + screen->window = SDL_CreateWindow(window_title, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, window_size.width, window_size.height,