Skip to content

Commit

Permalink
[26571] Label now updates in view when fields change (#709)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcel7ag authored Aug 30, 2024
1 parent 2ed72b5 commit 9d54aa3
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,7 @@ public void focusLost(final FocusEvent e) {
IFall fall = getSelectedFall();
if (fall != null) {
fall.set(Fall.FLD_BEZEICHNUNG, newval);
form.setText(actFall.getLabel());
fireSelectedFallUpdateEvent();
}
super.focusLost(e);
Expand All @@ -363,6 +364,7 @@ public void selectionChanged(SelectionChangedEvent event) {
if (actFall != null) {
actFall.setGrund(selected);
updateGestationWeek13();
form.setText(actFall.getLabel());
fireSelectedFallUpdateEvent();
}
}
Expand Down

0 comments on commit 9d54aa3

Please sign in to comment.