Skip to content

Commit ec41ec2

Browse files
committed
Improve code quality
1 parent 64e9150 commit ec41ec2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Plugins/Flow.Launcher.Plugin.Url/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public bool IsURL(string raw)
117117
public void Init(PluginInitContext context)
118118
{
119119
Context = context;
120-
120+
121121
Settings = context.API.LoadSettingJsonStorage<Settings>();
122122
}
123123

Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ private void SelectBrowserPath(object sender, RoutedEventArgs e)
1616
{
1717
var dlg = new Microsoft.Win32.OpenFileDialog
1818
{
19-
Filter = Main.Context.API.GetTranslation("flowlauncher_plugin_url_plugin_filter")
19+
Filter = Localize.flowlauncher_plugin_url_plugin_filter()
2020
};
2121

2222
if (dlg.ShowDialog() == true && !string.IsNullOrEmpty(dlg.FileName))

0 commit comments

Comments
 (0)