SDL: video: Update the current display when moving a window programmatically

From d9fadb8b474c1632d42f31b4169cedacabb6715b Mon Sep 17 00:00:00 2001
From: Frank Praznik <[EMAIL REDACTED]>
Date: Tue, 21 Feb 2023 11:14:26 -0500
Subject: [PATCH] video: Update the current display when moving a window
 programmatically

When moving a window programmatically, the move event will be deduplicated due to the window x and y coordinates already being updated, so the window's current display ID needs to be explicitly updated.
---
 src/video/SDL_video.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c
index 008e2ab4f0d4..431adfde83e7 100644
--- a/src/video/SDL_video.c
+++ b/src/video/SDL_video.c
@@ -2201,6 +2201,7 @@ int SDL_SetWindowPosition(SDL_Window *window, int x, int y)
     } else {
         window->x = x;
         window->y = y;
+        window->last_displayID = SDL_GetDisplayForWindow(window);
 
         if (_this->SetWindowPosition) {
             _this->SetWindowPosition(_this, window);