From 59b25aa13cd0338e07cc7ec6b742e269f9ce64d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Sun, 19 Nov 2023 14:53:25 +0100 Subject: [PATCH] Fixed Marker of stack frames not properly cleared --- CHANGELOG.md | 1 + .../jpexs/decompiler/flash/gui/editor/DebuggableEditorPane.java | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ae0a8800..efc95fe59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 Debugging - activation object was not visible in locals - Linenumbers are visible even if debug markers are used +- Marker of stack frames not properly cleared ### Changed - [#2120] Exported assets no longer take names from assigned classes if there is more than 1 assigned class diff --git a/src/com/jpexs/decompiler/flash/gui/editor/DebuggableEditorPane.java b/src/com/jpexs/decompiler/flash/gui/editor/DebuggableEditorPane.java index 178c1dcb9..40e09b387 100644 --- a/src/com/jpexs/decompiler/flash/gui/editor/DebuggableEditorPane.java +++ b/src/com/jpexs/decompiler/flash/gui/editor/DebuggableEditorPane.java @@ -112,6 +112,7 @@ public class DebuggableEditorPane extends LineMarkedEditorPane implements BreakP removeColorMarkerOnAllLines(BREAKPOINT_MARKER); removeColorMarkerOnAllLines(INVALID_BREAKPOINT_MARKER); removeColorMarkerOnAllLines(IP_MARKER); + removeColorMarkerOnAllLines(STACK_MARKER); if (scriptName == null) { return;