Skip to content

Commit 76daf0b

Browse files
committed
Bug fix rules dialog, possibly due to JavaFX18
1 parent b60c82b commit 76daf0b

File tree

1 file changed

+2
-2
lines changed
  • app/display/editor/src/main/java/org/csstudio/display/builder/editor/properties

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
public class RulesDialog extends Dialog<List<RuleInfo>>
8282
{
8383
/** Expression info as property-based item for table */
84-
private abstract static class ExprItem<T>
84+
public abstract static class ExprItem<T>
8585
{
8686
final protected StringProperty boolExp = new SimpleStringProperty();
8787
final protected SimpleObjectProperty<Node> field = new SimpleObjectProperty<>();
@@ -223,7 +223,7 @@ public static <T> ExprItem<?> makeNewFromOld(
223223
}
224224

225225
/** Modifiable RuleInfo */
226-
private static class RuleItem
226+
public static class RuleItem
227227
{
228228
public List<ExprItem<?>> expressions;
229229
public List<PVTableItem> pvs;

0 commit comments

Comments
 (0)