mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
Merge pull request #70 from gadfly3173/fix/gpg-select
fix: GPG executable file input didn't echo after selected
This commit is contained in:
commit
a042945875
1 changed files with 6 additions and 4 deletions
|
@ -1,9 +1,8 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
using Avalonia;
|
||||
using Avalonia.Collections;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Input;
|
||||
|
@ -52,10 +51,13 @@ namespace SourceGit.Views
|
|||
set;
|
||||
}
|
||||
|
||||
public static readonly StyledProperty<string> GPGExecutableFileProperty =
|
||||
AvaloniaProperty.Register<Preference, string>(nameof(GPGExecutableFile));
|
||||
|
||||
public string GPGExecutableFile
|
||||
{
|
||||
get;
|
||||
set;
|
||||
get => GetValue(GPGExecutableFileProperty);
|
||||
set => SetValue(GPGExecutableFileProperty, value);
|
||||
}
|
||||
|
||||
public string GPGUserKey
|
||||
|
|
Loading…
Reference in a new issue