From 8b740304f6c702f061ecbdc39c95609b11adff7d Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 3 Jun 2026 16:03:29 +0200 Subject: [PATCH] [fix:] running-sheet configurations are ints --- DataStore/Settings.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DataStore/Settings.cs b/DataStore/Settings.cs index 120a0ee..67be3fe 100644 --- a/DataStore/Settings.cs +++ b/DataStore/Settings.cs @@ -71,8 +71,8 @@ public class PdfExportSettings public double fontSize { get; set; } = 9; public double smallFontSize { get; set; } = 6; public bool exportRunningSheets { get; set; } = true; - public double rsNumGrouped { get; set; } = 25; - public double rsPlzStartpoint { get; set; } = 2; + public int rsNumGrouped { get; set; } = 25; + public int rsPlzStartpoint { get; set; } = 2; } public class Global