Skip to content

Commit 8f7c726

Browse files
Set latching to true by default
1 parent f549079 commit 8f7c726

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/alarm/model/src/main/java/org/phoebus/applications/alarm/model/xml/XmlModelReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ private void processPV(final AlarmClientNode parent, final Element node) throws
283283
}
284284

285285

286-
pv.setLatching(XMLUtil.getChildBoolean(node, TAG_LATCHING).orElse(false));
286+
pv.setLatching(XMLUtil.getChildBoolean(node, TAG_LATCHING).orElse(true));
287287
pv.setAnnunciating(XMLUtil.getChildBoolean(node, TAG_ANNUNCIATING).orElse(false));
288288

289289
XMLUtil.getChildString(node, TAG_DESCRIPTION).ifPresent(pv::setDescription);

0 commit comments

Comments
 (0)