Merge branch 'master' into enable_userselected_programloading

This commit is contained in:
Jeremy Wu 2019-10-27 20:43:22 +11:00
commit d149df2a6e
2 changed files with 7 additions and 2 deletions

View File

@ -30,6 +30,8 @@ namespace Wox.Plugin.Program
_settings.ProgramSuffixes = tbSuffixes.Text.Split(Settings.SuffixSeperator); _settings.ProgramSuffixes = tbSuffixes.Text.Split(Settings.SuffixSeperator);
string msg = context.API.GetTranslation("wox_plugin_program_update_file_suffixes"); string msg = context.API.GetTranslation("wox_plugin_program_update_file_suffixes");
MessageBox.Show(msg); MessageBox.Show(msg);
DialogResult = true;
} }
} }
} }

View File

@ -102,8 +102,11 @@ namespace Wox.Plugin.Program.Views
private void BtnProgramSuffixes_OnClick(object sender, RoutedEventArgs e) private void BtnProgramSuffixes_OnClick(object sender, RoutedEventArgs e)
{ {
ProgramSuffixes p = new ProgramSuffixes(context, _settings); var p = new ProgramSuffixes(context, _settings);
p.ShowDialog(); if (p.ShowDialog() ?? false)
{
ReIndexing();
}
} }
private void programSourceView_DragEnter(object sender, DragEventArgs e) private void programSourceView_DragEnter(object sender, DragEventArgs e)