diff --git a/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj b/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
index 3a756cd26..410d11536 100644
--- a/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
+++ b/Flow.Launcher.Infrastructure/Flow.Launcher.Infrastructure.csproj
@@ -38,6 +38,7 @@
+
@@ -55,6 +56,7 @@
+
diff --git a/Flow.Launcher.Infrastructure/FodyWeavers.xml b/Flow.Launcher.Infrastructure/FodyWeavers.xml
new file mode 100644
index 000000000..4e68ed1a8
--- /dev/null
+++ b/Flow.Launcher.Infrastructure/FodyWeavers.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs b/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs
index bf5c7d769..d036c008c 100644
--- a/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs
+++ b/Flow.Launcher/CustomQueryHotkeySetting.xaml.cs
@@ -57,7 +57,6 @@ namespace Flow.Launcher
App.API.ChangeQuery(pluginHotkey.ActionKeyword);
Application.Current.MainWindow.Visibility = Visibility.Visible;
});
- MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
}
else
{
@@ -76,7 +75,6 @@ namespace Flow.Launcher
App.API.ChangeQuery(updateCustomHotkey.ActionKeyword);
Application.Current.MainWindow.Visibility = Visibility.Visible;
});
- MessageBox.Show(InternationalizationManager.Instance.GetTranslation("success"));
}
Close();
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml
index 0aea8f04e..8457f52f7 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml
@@ -31,7 +31,7 @@
-
+
diff --git a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml.cs b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml.cs
index 8ecb690a4..01dc68af6 100644
--- a/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.BrowserBookmark/Views/SettingsControl.xaml.cs
@@ -19,7 +19,7 @@ namespace Flow.Launcher.Plugin.BrowserBookmark.Views
browserPathBox.Text = _settings.BrowserPath;
NewWindowBrowser.IsChecked = _settings.OpenInNewBrowserWindow;
NewTabInBrowser.IsChecked = !_settings.OpenInNewBrowserWindow;
- }
+ }
private void OnNewBrowserWindowClick(object sender, RoutedEventArgs e)
{
@@ -43,5 +43,10 @@ namespace Flow.Launcher.Plugin.BrowserBookmark.Views
_settings.BrowserPath = fileBrowserDialog.FileName;
}
}
+
+ private void OnBrowserPathTextChanged(object sender, TextChangedEventArgs e)
+ {
+ _settings.BrowserPath = browserPathBox.Text;
+ }
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml b/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml
index 704b59c1e..f54aea878 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml
@@ -19,8 +19,8 @@
-
+
diff --git a/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs b/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs
index 0d452593a..6c899dbfe 100644
--- a/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.Url/SettingsControl.xaml.cs
@@ -57,5 +57,10 @@ namespace Flow.Launcher.Plugin.Url
{
_settings.OpenInNewBrowserWindow = false;
}
+
+ private void OnBrowserPathTextChanged(object sender, TextChangedEventArgs e)
+ {
+ _settings.BrowserPath = browserPathBox.Text;
+ }
}
}
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml.cs
index c82fe97c0..9ecdda23f 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SearchSourceSetting.xaml.cs
@@ -83,8 +83,6 @@ namespace Flow.Launcher.Plugin.WebSearch
_searchSources.Add(_searchSource);
- var info = _api.GetTranslation("success");
- MessageBox.Show(info);
Close();
}
else
@@ -106,8 +104,6 @@ namespace Flow.Launcher.Plugin.WebSearch
var index = _searchSources.IndexOf(_oldSearchSource);
_searchSources[index] = _searchSource;
- var info = _api.GetTranslation("success");
- MessageBox.Show(info);
Close();
}
else
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml
index 81f2d739b..835937efd 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml
@@ -40,7 +40,7 @@
-
diff --git a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml.cs b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml.cs
index 4a4ac34ec..16ef38cff 100644
--- a/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml.cs
+++ b/Plugins/Flow.Launcher.Plugin.WebSearch/SettingsControl.xaml.cs
@@ -83,5 +83,10 @@ namespace Flow.Launcher.Plugin.WebSearch
_settings.BrowserPath = fileBrowserDialog.FileName;
}
}
+
+ private void OnBrowserPathTextChanged(object sender, TextChangedEventArgs e)
+ {
+ _settings.BrowserPath = browserPathBox.Text;
+ }
}
}