mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Improve code quality
This commit is contained in:
parent
64e9150f11
commit
ec41ec2377
2 changed files with 2 additions and 2 deletions
|
|
@ -117,7 +117,7 @@ namespace Flow.Launcher.Plugin.Url
|
|||
public void Init(PluginInitContext context)
|
||||
{
|
||||
Context = context;
|
||||
|
||||
|
||||
Settings = context.API.LoadSettingJsonStorage<Settings>();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ public partial class SettingsControl : UserControl
|
|||
{
|
||||
var dlg = new Microsoft.Win32.OpenFileDialog
|
||||
{
|
||||
Filter = Main.Context.API.GetTranslation("flowlauncher_plugin_url_plugin_filter")
|
||||
Filter = Localize.flowlauncher_plugin_url_plugin_filter()
|
||||
};
|
||||
|
||||
if (dlg.ShowDialog() == true && !string.IsNullOrEmpty(dlg.FileName))
|
||||
|
|
|
|||
Loading…
Reference in a new issue