[fix:] running-sheet configurations are ints
This commit is contained in:
@@ -71,8 +71,8 @@ public class PdfExportSettings
|
|||||||
public double fontSize { get; set; } = 9;
|
public double fontSize { get; set; } = 9;
|
||||||
public double smallFontSize { get; set; } = 6;
|
public double smallFontSize { get; set; } = 6;
|
||||||
public bool exportRunningSheets { get; set; } = true;
|
public bool exportRunningSheets { get; set; } = true;
|
||||||
public double rsNumGrouped { get; set; } = 25;
|
public int rsNumGrouped { get; set; } = 25;
|
||||||
public double rsPlzStartpoint { get; set; } = 2;
|
public int rsPlzStartpoint { get; set; } = 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
public class Global
|
public class Global
|
||||||
|
|||||||
Reference in New Issue
Block a user