mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 05:25:08 +00:00
Backends: SDL3: new viewport windows are created with the SDL_WINDOW_HIDDEN flag before calling SDL_ShowWindow(). (#8328
Unsure why it was missing from a526ff8c3
This commit is contained in:
parent
6e94f6cefb
commit
a3802c84fd
2 changed files with 4 additions and 0 deletions
|
@ -955,6 +955,7 @@ static void ImGui_ImplSDL3_CreateWindow(ImGuiViewport* viewport)
|
|||
}
|
||||
|
||||
SDL_WindowFlags sdl_flags = 0;
|
||||
sdl_flags |= SDL_WINDOW_HIDDEN;
|
||||
sdl_flags |= use_opengl ? SDL_WINDOW_OPENGL : (bd->UseVulkan ? SDL_WINDOW_VULKAN : 0);
|
||||
sdl_flags |= SDL_GetWindowFlags(bd->Window) & SDL_WINDOW_HIGH_PIXEL_DENSITY;
|
||||
sdl_flags |= (viewport->Flags & ImGuiViewportFlags_NoDecoration) ? SDL_WINDOW_BORDERLESS : 0;
|
||||
|
|
|
@ -72,6 +72,9 @@ Other changes:
|
|||
|
||||
Docking+Viewports Branch:
|
||||
|
||||
- Backends: SDL3: new viewport windows are created with the SDL_WINDOW_HIDDEN flag
|
||||
before calling SDL_ShowWindow(). (#8328) [@PathogenDavid]
|
||||
|
||||
|
||||
-----------------------------------------------------------------------
|
||||
VERSION 1.91.7 (Released 2025-01-14)
|
||||
|
|
Loading…
Add table
Reference in a new issue