[feat:] more correction margin options

This commit is contained in:
2025-11-09 11:55:50 +01:00
parent cc533045df
commit 293857bc37
2 changed files with 8 additions and 1 deletions

View File

@@ -24,6 +24,12 @@ public class ExportOptionsViewModel : INotifyPropertyChanged
}
// Korrekturrand RadioButtons mapped auf int
public bool IsCorrectionMarginMore
{
get => correctionMargin == 150;
set { if (value) { correctionMargin = 150; OnPropertyChanged(); } }
}
public bool IsCorrectionMarginHalf
{
get => correctionMargin == 100;