Skip to content

Commit

Permalink
Bugfix for previous PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Noggog committed Jul 11, 2022
1 parent 2b130c2 commit 132e87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mutagen.Bethesda.WPF/Plugins/AFormKeyPicker.cs
Expand Up @@ -97,7 +97,7 @@ public bool MissingMeansNull
get => (bool)GetValue(MissingMeansNullProperty);
set => SetValue(MissingMeansNullProperty, value);
}
public static readonly DependencyProperty MissingMeansNullProperty = DependencyProperty.Register(nameof(MissingMeansNull), typeof(bool?), typeof(AFormKeyPicker),
public static readonly DependencyProperty MissingMeansNullProperty = DependencyProperty.Register(nameof(MissingMeansNull), typeof(bool), typeof(AFormKeyPicker),
new FrameworkPropertyMetadata(default(bool)));

public StatusIndicatorState Status
Expand Down

0 comments on commit 132e87d

Please sign in to comment.