From 71c291a7f11ff01366426e1243076e5e9ede65fa Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Wed, 15 Sep 2021 17:19:08 -0300 Subject: [PATCH] Adjusts case of menu item. --- source/ide/ide_methods.bas | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index ba320282b..a4a70f40e 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -358,7 +358,7 @@ FUNCTION ide2 (ignore) menuDesc$(m, i - 1) = "Displays the call stack of the current program's last execution" menu$(m, i) = "-": i = i + 1 DebugMenuAutoAddCommand = i - menu$(m, i) = "Auto-add $#Debug metacommand": i = i + 1 + menu$(m, i) = "Auto-add $#Debug Metacommand": i = i + 1 menuDesc$(m, i - 1) = "Toggles whether the IDE will auto-add the $Debug metacommand as required" IF AutoAddDebugCommand THEN menu$(DebugMenuID, DebugMenuAutoAddCommand) = CHR$(7) + menu$(DebugMenuID, DebugMenuAutoAddCommand) @@ -4994,15 +4994,15 @@ FUNCTION ide2 (ignore) GOTO ideloop END IF - IF RIGHT$(menu$(m, s), 28) = "Auto-add $#Debug metacommand" THEN + IF RIGHT$(menu$(m, s), 28) = "Auto-add $#Debug Metacommand" THEN PCOPY 2, 0 AutoAddDebugCommand = NOT AutoAddDebugCommand IF AutoAddDebugCommand THEN WriteConfigSetting debugSettingsSection$, "AutoAddDebugCommand", "True" - menu$(DebugMenuID, DebugMenuAutoAddCommand) = CHR$(7) + "Auto-add $#Debug metacommand" + menu$(DebugMenuID, DebugMenuAutoAddCommand) = CHR$(7) + "Auto-add $#Debug Metacommand" ELSE WriteConfigSetting debugSettingsSection$, "AutoAddDebugCommand", "False" - menu$(DebugMenuID, DebugMenuAutoAddCommand) = "Auto-add $#Debug metacommand" + menu$(DebugMenuID, DebugMenuAutoAddCommand) = "Auto-add $#Debug Metacommand" END IF PCOPY 3, 0: SCREEN , , 3, 0 GOTO ideloop