Skip to content

Commit 33e8410

Browse files
authored
Merge pull request #3211 from KaushikMalapati/latching
Set latching to true by default
2 parents c9381d0 + 8f7c726 commit 33e8410

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)