From 1092f1da5537e6da1cb5666d105d106a1fc09b0b Mon Sep 17 00:00:00 2001 From: b-hayes Date: Tue, 30 Sep 2025 13:14:48 +1000 Subject: [PATCH] Dont use focus mode in quake mode unless its turned on manually. --- src/cascadia/TerminalApp/TerminalWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cascadia/TerminalApp/TerminalWindow.cpp b/src/cascadia/TerminalApp/TerminalWindow.cpp index 2bb8cca2cf5..66a6327e2d9 100644 --- a/src/cascadia/TerminalApp/TerminalWindow.cpp +++ b/src/cascadia/TerminalApp/TerminalWindow.cpp @@ -233,7 +233,7 @@ namespace winrt::TerminalApp::implementation // that the window size is _first_ set up as something sensible, so // leaving fullscreen returns to a reasonable size. const auto launchMode = this->GetLaunchMode(); - if (_WindowProperties->IsQuakeWindow() || WI_IsFlagSet(launchMode, LaunchMode::FocusMode)) + if (WI_IsFlagSet(launchMode, LaunchMode::FocusMode)) { _root->SetFocusMode(true); }