Skip to content

Commit

Permalink
Fix default minimap style
Browse files Browse the repository at this point in the history
  • Loading branch information
miroiu committed Jul 23, 2024
1 parent db0847f commit e66efb8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions Nodify/EditorGestures.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ public void Apply(GroupingNodeGestures gestures)
}
}

/// <summary>Gestures used by the <see cref="Nodify.Minimap"/> control.</summary>
public class MinimapGestures
{
public MinimapGestures()
Expand Down
10 changes: 5 additions & 5 deletions Nodify/Themes/Styles/Minimap.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
<local:SubtractConverter x:Key="SubtractConverter" />

<SolidColorBrush x:Key="MinimapBackground"
Color="Black"
Opacity="0.3" />
Color="#121212"
Opacity="0.7" />
<SolidColorBrush x:Key="MinimapItemBackground"
Color="White"
Color="#2D2D30"
Opacity="0.8" />

<Style x:Key="ViewportRectStyle"
TargetType="Rectangle">
<Setter Property="Stroke"
Value="White" />
Value="DodgerBlue" />
<Setter Property="StrokeThickness"
Value="3" />
<Setter Property="Fill">
<Setter.Value>
<SolidColorBrush Color="White"
<SolidColorBrush Color="DodgerBlue"
Opacity="0.2" />
</Setter.Value>
</Setter>
Expand Down

0 comments on commit e66efb8

Please sign in to comment.