mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
fix: IsEnabled handler not triggered when GPGFormat changed
This commit is contained in:
parent
80dfa059ce
commit
198cf04c09
2 changed files with 6 additions and 3 deletions
|
@ -66,10 +66,13 @@ namespace SourceGit.Views
|
|||
set;
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<Models.GPGFormat> GPGFormatProperty =
|
||||
AvaloniaProperty.Register<Preference, Models.GPGFormat>(nameof(GPGFormat));
|
||||
|
||||
public Models.GPGFormat GPGFormat
|
||||
{
|
||||
get;
|
||||
set;
|
||||
get => GetValue(GPGFormatProperty);
|
||||
set => SetValue(GPGFormatProperty, value);
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<string> GPGExecutableFileProperty =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue