Skip to content

Commit

Permalink
Tweak InsertedBackColor to use InsertedBackground instead of Inserted…
Browse files Browse the repository at this point in the history
…Foreground
  • Loading branch information
broderickt2 authored and mmanela committed Oct 10, 2024
1 parent 015abba commit 6d7c70a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DiffPlex.Wpf/Forms/DiffViewer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ public Color InsertedForeColor
/// </summary>
public Color InsertedBackColor
{
get => GetColor(Core.InsertedForeground);
set => Core.InsertedForeground = ToBrush(value);
get => GetColor(Core.InsertedBackground);
set => Core.InsertedBackground = ToBrush(value);
}

/// <summary>
Expand Down

0 comments on commit 6d7c70a

Please sign in to comment.