From 69a1087e9ee6d6db1f33b1d32b3d3f69dbe38791 Mon Sep 17 00:00:00 2001 From: Haroon Qureshi Date: Wed, 13 May 2026 03:59:17 -0700 Subject: [PATCH] Disable window resizing on load as it breaks on some platforms. PiperOrigin-RevId: 914774489 Change-Id: I9aea71b386de93f4d2fc3da5310dd7a3018c8c1c --- src/experimental/studio/app.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/experimental/studio/app.cc b/src/experimental/studio/app.cc index ece64f22..48b038f3 100644 --- a/src/experimental/studio/app.cc +++ b/src/experimental/studio/app.cc @@ -105,7 +105,8 @@ void App::SwitchGraphicsMode(int width, int height, renderer_ = std::make_unique( window_->GetNativeWindowHandle(), gfx_mode_); - LoadSettings(); + // TODO: Figure out why this breaks on some platforms. + // LoadSettings(); if (ui_.window_width > 0 && ui_.window_height > 0) { window_->Resize(ui_.window_width, ui_.window_height); }