From d485b9b34b10e3f8ce4e7fcff698546391360fd9 Mon Sep 17 00:00:00 2001 From: Cody <6558800+Bl3nd@users.noreply.github.com> Date: Mon, 7 Oct 2024 17:25:12 -0600 Subject: [PATCH] Remove error strip markers if you click on an empty line. --- .../club/bytecodeviewer/gui/util/BytecodeViewPanelUpdater.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/BytecodeViewPanelUpdater.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/BytecodeViewPanelUpdater.java index b3e8b747..3e39cd93 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/BytecodeViewPanelUpdater.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/util/BytecodeViewPanelUpdater.java @@ -513,6 +513,7 @@ public class BytecodeViewPanelUpdater implements Runnable if (token == null) { highlighterEx.clearMarkOccurrencesHighlights(); + errorStripe.refreshMarkers(); return; } }