Conversely, we shouldn't automatically show children when we get focus

main
Sam Lantinga 2023-03-16 14:09:46 -07:00
parent 0cb7c4ba58
commit 76176c9845
1 changed files with 0 additions and 17 deletions

View File

@ -447,20 +447,6 @@ void X11_ReconcileKeyboardState(_THIS)
}
}
static void X11_ShowChildren(_THIS, SDL_Window *window)
{
for (window = window->first_child; window != NULL; window = window->next_sibling) {
window->driverdata->hidden_by_parent_focus = SDL_FALSE;
if (!(window->flags & SDL_WINDOW_HIDDEN)) {
X11_ShowWindow(_this, window);
}
if (window->first_child) {
X11_ShowChildren(_this, window);
}
}
}
static void X11_DispatchFocusIn(_THIS, SDL_WindowData *data)
{
#ifdef DEBUG_XEVENTS
@ -479,9 +465,6 @@ static void X11_DispatchFocusIn(_THIS, SDL_WindowData *data)
if (data->flashing_window) {
X11_FlashWindow(_this, data->window, SDL_FLASH_CANCEL);
}
if (data->window->parent == NULL) {
X11_ShowChildren(_this, data->window);
}
}
static void X11_DispatchFocusOut(_THIS, SDL_WindowData *data)