Skip to content

Commit 8abe313

Browse files
committed
Add browserpath display on load
1 parent c1eca93 commit 8abe313

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

Plugins/Wox.Plugin.BrowserBookmark/Views/SettingsControl.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public SettingsControl(Settings settings)
1616
{
1717
InitializeComponent();
1818
_settings = settings;
19+
browserPathBox.Text = _settings.BrowserPath;
1920
NewWindowBrowser.IsChecked = _settings.OpenInNewBrowserWindow;
2021
NewTabInBrowser.IsChecked = !_settings.OpenInNewBrowserWindow;
2122
}

Plugins/Wox.Plugin.WebSearch/SettingsControl.xaml.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public SettingsControl(PluginInitContext context, SettingsViewModel viewModel)
1919
_context = context;
2020
_settings = viewModel.Settings;
2121
DataContext = viewModel;
22+
browserPathBox.Text = _settings.BrowserPath;
2223
NewWindowBrowser.IsChecked = _settings.OpenInNewBrowser;
2324
NewTabInBrowser.IsChecked = !_settings.OpenInNewBrowser;
2425
}

0 commit comments

Comments
 (0)