From c0d705384779fad00ab818de51f009ac6754b360 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 6 Aug 2026 15:39:55 +0200 Subject: [PATCH] [fix:] refreshing listbox items after processing address sets --- MainWindow.axaml.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index eb028e7..7f5b81f 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -98,6 +98,8 @@ public partial class MainWindow : Window progressWindow.Close(); new ResultWindow(result, addresSetID).Show(); Settings.Save(); + + RefreshAddressSetListItems((LstCustomers.SelectedItem as Customer).ID); } private async void StartAddressShortener(KasAddressList set) @@ -110,6 +112,8 @@ public partial class MainWindow : Window progressWindow.Close(); Settings.Save(); + + RefreshAddressSetListItems((LstCustomers.SelectedItem as Customer).ID); } private async void StartAddressRepairer(KasAddressList set) @@ -122,6 +126,8 @@ public partial class MainWindow : Window progressWindow.Close(); Settings.Save(); + + RefreshAddressSetListItems((LstCustomers.SelectedItem as Customer).ID); } @@ -858,6 +864,8 @@ public partial class MainWindow : Window Logger.Log("PDF seems OK"); } + + RefreshAddressSetListItems((LstCustomers.SelectedItem as Customer).ID); } catch (Exception ex)