From: Liza Carvelli Date: Sun, 1 Sep 2024 18:35:50 +0000 (+0200) Subject: Don't allow debug overlay to be closed via ESC X-Git-Tag: v2.20~6 X-Git-Url: https://git.jacobcasper.com/?a=commitdiff_plain;h=272050d11b0483aba3550e32f2c9989c6b5c8ed3;p=Questionable.git Don't allow debug overlay to be closed via ESC --- diff --git a/Questionable/Windows/DebugOverlay.cs b/Questionable/Windows/DebugOverlay.cs index e629fe01..c41daf60 100644 --- a/Questionable/Windows/DebugOverlay.cs +++ b/Questionable/Windows/DebugOverlay.cs @@ -45,6 +45,8 @@ internal sealed class DebugOverlay : Window Size = ImGui.GetIO().DisplaySize; SizeCondition = ImGuiCond.Always; IsOpen = true; + ShowCloseButton = false; + RespectCloseHotkey = false; } public ElementId? HighlightedQuest { get; set; }