From 5925e59056b744a0a96e7d35186ff55410e12e82 Mon Sep 17 00:00:00 2001 From: ddwightx Date: Tue, 10 Sep 2024 23:17:17 -0400 Subject: [PATCH] Fixed issue where changes to rule operations added by the match & replace wizard weren't getting recognized as state changes. --- .../burp/ui/components/rules/RuleOperationListComponent.java | 1 + 1 file changed, 1 insertion(+) diff --git a/extension/src/main/java/synfron/reshaper/burp/ui/components/rules/RuleOperationListComponent.java b/extension/src/main/java/synfron/reshaper/burp/ui/components/rules/RuleOperationListComponent.java index 77df122..7efbaf0 100644 --- a/extension/src/main/java/synfron/reshaper/burp/ui/components/rules/RuleOperationListComponent.java +++ b/extension/src/main/java/synfron/reshaper/burp/ui/components/rules/RuleOperationListComponent.java @@ -109,6 +109,7 @@ private Component getOperationsList() { protected void refreshOperationsList() { operationsListModel.clear(); operationsListModel.addAll(getRuleOperations()); + setModelChangedListeners(); } private Component getActionBar() {