mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
parent
4aa0a733fc
commit
04a4833c6e
1 changed files with 4 additions and 2 deletions
|
|
@ -15,6 +15,7 @@ namespace Wox.Plugin.Program
|
|||
public AddProgramSource(Settings settings)
|
||||
{
|
||||
_settings = settings;
|
||||
|
||||
InitializeComponent();
|
||||
Suffixes.Text = string.Join(";", settings.ProgramSuffixes);
|
||||
}
|
||||
|
|
@ -22,11 +23,12 @@ namespace Wox.Plugin.Program
|
|||
public AddProgramSource(ProgramSource edit, Settings settings)
|
||||
{
|
||||
_editing = edit;
|
||||
_settings = settings;
|
||||
|
||||
InitializeComponent();
|
||||
Directory.Text = _editing.Location;
|
||||
MaxDepth.Text = _editing.MaxDepth.ToString();
|
||||
Suffixes.Text = string.Join(";", _editing.Suffixes);
|
||||
_settings = settings;
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void BrowseButton_Click(object sender, RoutedEventArgs e)
|
||||
|
|
|
|||
Loading…
Reference in a new issue