_disable popup reparenting
Some checks are pending
Build Android / Game (Android, Release ARM64) (push) Waiting to run
Build iOS / Game (iOS, Release ARM64) (push) Waiting to run
Build Linux / Editor (Linux, Development x64) (push) Waiting to run
Build Linux / Game (Linux, Release x64) (push) Waiting to run
Build macOS / Editor (Mac, Development ARM64) (push) Waiting to run
Build macOS / Game (Mac, Release ARM64) (push) Waiting to run
Build Windows / Editor (Windows, Development x64) (push) Waiting to run
Build Windows / Game (Windows, Release x64) (push) Waiting to run
Cooker / Cook (Mac) (push) Waiting to run
Tests / Tests (Linux) (push) Waiting to run
Tests / Tests (Windows) (push) Waiting to run

This commit is contained in:
2025-01-01 22:25:37 +02:00
parent 5304fc2573
commit 45c88ceb01

View File

@@ -141,7 +141,7 @@ SDLWindow::SDLWindow(const CreateWindowSettings& settings)
if (_settings.Parent != nullptr && _settings.Parent->_settings.Type != WindowType::Regular && (_settings.Type == WindowType::Tooltip || _settings.Type == WindowType::Popup))
{
// Reparent popup windows to top-most regular window
#if !PLATFORM_WINDOWS
#if false && !PLATFORM_WINDOWS
{
auto parent = _settings.Parent->GetSettings().Parent;
while (parent != nullptr)