From a90aa4b1abddbcce23dfb2eace2b3864c2f67a2d Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Wed, 14 Aug 2024 11:52:35 +0200 Subject: [PATCH] fixed saving if change is only in grid --- .../DetailViewControls/ArrivalNotificationDetailControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ENI2/DetailViewControls/ArrivalNotificationDetailControl.xaml.cs b/ENI2/DetailViewControls/ArrivalNotificationDetailControl.xaml.cs index b5bef58d..0d916772 100644 --- a/ENI2/DetailViewControls/ArrivalNotificationDetailControl.xaml.cs +++ b/ENI2/DetailViewControls/ArrivalNotificationDetailControl.xaml.cs @@ -40,7 +40,7 @@ namespace ENI2.DetailViewControls this.RegisterIntegerUpDownChange(this.integerUpDownPersonsOnBoard, Message.NotificationClass.POBA); this.RegisterIntegerUpDownChange(this.integerUpDownStowawaysOnBoard, Message.NotificationClass.POBA); startupComplete = true; - this.dataGridBKRA.CellEditEnding += (obj, ev) => { this.OnNotificationClassChanged(Message.NotificationClass.BKRA); }; + this.dataGridBKRA.CellEditEnding += (obj, ev) => { this.SublistElementChanged(Message.NotificationClass.BKRA); }; } public override void Initialize()