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