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)