From 0c4611024fa57c8c97d5842fe3c25db36ec31f50 Mon Sep 17 00:00:00 2001 From: Lorenz Stechauner Date: Tue, 25 Aug 2026 16:31:33 +0200 Subject: [PATCH] App: Add default weighing mode for Pamhagen --- Elwig/App.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Elwig/App.xaml.cs b/Elwig/App.xaml.cs index 953f83b..45f7d80 100644 --- a/Elwig/App.xaml.cs +++ b/Elwig/App.xaml.cs @@ -179,7 +179,7 @@ namespace Elwig { Config.WeighingMode = WeighingMode.Net; } else if (Client.IsHaugsdorf || Client.IsSitzendorf) { Config.WeighingMode = WeighingMode.Box; - } else if (Client.IsBaden || Client.IsGrInzersdorf) { + } else if (Client.IsBaden || Client.IsGrInzersdorf || Client.IsPamhagen) { Config.WeighingMode = WeighingMode.Gross; } }