From 293857bc37e64cbc453718a5a8c1dfdb915c9635 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Sun, 9 Nov 2025 11:55:50 +0100 Subject: [PATCH] [feat:] more correction margin options --- CorrectionViewModel.cs | 6 ++++++ ExportOptions.axaml | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CorrectionViewModel.cs b/CorrectionViewModel.cs index 888249c..10ffb11 100644 --- a/CorrectionViewModel.cs +++ b/CorrectionViewModel.cs @@ -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; diff --git a/ExportOptions.axaml b/ExportOptions.axaml index 1ccec5f..c810fd4 100644 --- a/ExportOptions.axaml +++ b/ExportOptions.axaml @@ -18,8 +18,9 @@ - + +