From 6d7c70ae59bd3573f911e4b55e254826ee3aac5e Mon Sep 17 00:00:00 2001 From: Broderick Thayer Date: Fri, 26 Jul 2024 16:23:23 -0400 Subject: [PATCH] Tweak InsertedBackColor to use InsertedBackground instead of InsertedForeground --- DiffPlex.Wpf/Forms/DiffViewer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DiffPlex.Wpf/Forms/DiffViewer.cs b/DiffPlex.Wpf/Forms/DiffViewer.cs index e6cc2b2f..dc4f96b6 100644 --- a/DiffPlex.Wpf/Forms/DiffViewer.cs +++ b/DiffPlex.Wpf/Forms/DiffViewer.cs @@ -292,8 +292,8 @@ public Color InsertedForeColor /// public Color InsertedBackColor { - get => GetColor(Core.InsertedForeground); - set => Core.InsertedForeground = ToBrush(value); + get => GetColor(Core.InsertedBackground); + set => Core.InsertedBackground = ToBrush(value); } ///