Skip to content

Commit 443d292

Browse files
authored
Merge pull request #2873 from ControlSystemStudio/CSSTUDIO-2074
CSSTUDIO-2074 Bugfix: Call undo.execute() instead of undo.add().
2 parents 1d3a946 + 22682e2 commit 443d292

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/display/editor/src/main/java/org/csstudio/display/builder/editor/properties/ArraySizePropertyBinding.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ public class ArraySizePropertyBinding extends WidgetPropertyBinding<Spinner<Inte
8383
for (Widget w : other)
8484
{
8585
final ArrayWidgetProperty other_prop = (ArrayWidgetProperty) w.getProperty(path);
86-
undo.add(new RemoveArrayElementAction<>(other_prop));
86+
undo.execute(new RemoveArrayElementAction<>(other_prop));
8787
}
8888
}
8989
};

0 commit comments

Comments
 (0)