From b0178fe5184ff38a2316eaa22f0f9c4a4cdb55af Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Wed, 14 Apr 2021 00:52:53 +0600 Subject: [PATCH] KMSDRM: Report correct window position to the application --- src/video/kmsdrm/SDL_kmsdrmvideo.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/video/kmsdrm/SDL_kmsdrmvideo.c b/src/video/kmsdrm/SDL_kmsdrmvideo.c index 43547c3f3..31620f700 100644 --- a/src/video/kmsdrm/SDL_kmsdrmvideo.c +++ b/src/video/kmsdrm/SDL_kmsdrmvideo.c @@ -1280,6 +1280,9 @@ KMSDRM_CreateWindow(_THIS, SDL_Window * window) SDL_SetMouseFocus(window); SDL_SetKeyboardFocus(window); + /* Tell the app that the window has moved to top-left. */ + SDL_SendWindowEvent(window, SDL_WINDOWEVENT_MOVED, 0, 0); + /* Allocated windata will be freed in KMSDRM_DestroyWindow, and KMSDRM_DestroyWindow() will be called by SDL_CreateWindow() if we return error on any of the previous returns of the function. */