diff --git a/Wox/MainWindow.xaml b/Wox/MainWindow.xaml
index f17c2f4ac6..b3d4fd5bd0 100644
--- a/Wox/MainWindow.xaml
+++ b/Wox/MainWindow.xaml
@@ -36,7 +36,17 @@
Text="{Binding QueryText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"
PreviewDragOver="OnPreviewDragOver"
AllowDrop="True"
- x:Name="QueryTextBox" />
+ x:Name="QueryTextBox">
+
+
+
+
+
+
+
+
+
+
diff --git a/Wox/MainWindow.xaml.cs b/Wox/MainWindow.xaml.cs
index a8b07ccfc2..cf9e20e62d 100644
--- a/Wox/MainWindow.xaml.cs
+++ b/Wox/MainWindow.xaml.cs
@@ -366,5 +366,10 @@ namespace Wox
{
e.Handled = true;
}
+
+ private void OnContextMenusForSettingsClick(object sender, RoutedEventArgs e)
+ {
+ App.API.OpenSettingDialog();
+ }
}
}
\ No newline at end of file
diff --git a/Wox/ViewModel/MainViewModel.cs b/Wox/ViewModel/MainViewModel.cs
index f7dbca1a8f..cb4eaa4746 100644
--- a/Wox/ViewModel/MainViewModel.cs
+++ b/Wox/ViewModel/MainViewModel.cs
@@ -22,7 +22,6 @@ namespace Wox.ViewModel
{
#region Private Fields
- private bool _isProgressBarTooltipVisible;
private double _left;
private double _top;