Fix editor not refreshing after using debug and run keyboard shortcuts

This commit is contained in:
Stone_Red
2026-03-04 23:38:22 +01:00
parent 64c61f0f8c
commit 7eea8756bc
+2
View File
@@ -50,10 +50,12 @@ internal class InputHandler(TextEditor textEditor)
case ConsoleKey.R:
ExecuteWithDebugScreen("run", false, false);
textEditor.Display(true);
return true;
case ConsoleKey.D:
ExecuteWithDebugScreen("debug", true, false);
textEditor.Display(true);
return true;
case ConsoleKey.F: