Fixed Marker of stack frames not properly cleared

This commit is contained in:
Jindra Petřík
2023-12-30 18:06:08 +01:00
parent eef53edd03
commit 59b25aa13c
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -38,6 +38,7 @@ All notable changes to this project will be documented in this file.
- AS3 Direct editation - script initializer for main document class - AS3 Direct editation - script initializer for main document class
- AS3 Debugging - activation object was not visible in locals - AS3 Debugging - activation object was not visible in locals
- Linenumbers are visible even if debug markers are used - Linenumbers are visible even if debug markers are used
- Marker of stack frames not properly cleared
### Changed ### Changed
- [#2120] Exported assets no longer take names from assigned classes if there is more than 1 assigned class - [#2120] Exported assets no longer take names from assigned classes if there is more than 1 assigned class
@@ -112,6 +112,7 @@ public class DebuggableEditorPane extends LineMarkedEditorPane implements BreakP
removeColorMarkerOnAllLines(BREAKPOINT_MARKER); removeColorMarkerOnAllLines(BREAKPOINT_MARKER);
removeColorMarkerOnAllLines(INVALID_BREAKPOINT_MARKER); removeColorMarkerOnAllLines(INVALID_BREAKPOINT_MARKER);
removeColorMarkerOnAllLines(IP_MARKER); removeColorMarkerOnAllLines(IP_MARKER);
removeColorMarkerOnAllLines(STACK_MARKER);
if (scriptName == null) { if (scriptName == null) {
return; return;