diff --git a/Wox.Core/UserSettings/UserSettingStorage.cs b/Wox.Core/UserSettings/UserSettingStorage.cs index 436cfaf707..ff2cc107ac 100644 --- a/Wox.Core/UserSettings/UserSettingStorage.cs +++ b/Wox.Core/UserSettings/UserSettingStorage.cs @@ -130,14 +130,7 @@ namespace Wox.Core.UserSettings OpacityMode = OpacityMode.Normal; LeaveCmdOpen = false; HideWhenDeactive = false; - CustomPluginHotkeys = new List() - { - new CustomPluginHotkey() - { - ActionKeyword = "history ", - Hotkey = "Alt + H" - } - }; + CustomPluginHotkeys = new List(); return this; } diff --git a/Wox.CrashReporter/ReportWindow.xaml.cs b/Wox.CrashReporter/ReportWindow.xaml.cs index 67c8b1d1a0..ff948f7955 100644 --- a/Wox.CrashReporter/ReportWindow.xaml.cs +++ b/Wox.CrashReporter/ReportWindow.xaml.cs @@ -55,6 +55,7 @@ namespace Wox.CrashReporter private void SendReport() { + Hide(); ThreadPool.QueueUserWorkItem(o => { string reproduceSteps = new TextRange(tbReproduceSteps.Document.ContentStart, tbReproduceSteps.Document.ContentEnd).Text; diff --git a/Wox.Infrastructure/Storage/BinaryStorage.cs b/Wox.Infrastructure/Storage/BinaryStorage.cs index 7651ca770c..9ad13bfafb 100644 --- a/Wox.Infrastructure/Storage/BinaryStorage.cs +++ b/Wox.Infrastructure/Storage/BinaryStorage.cs @@ -56,8 +56,9 @@ namespace Wox.Infrastructure.Storage } } } - catch (Exception) + catch (Exception e) { + Log.Error(e); serializedObject = LoadDefault(); #if (DEBUG) { diff --git a/Wox/Wox.csproj b/Wox/Wox.csproj index 5795de7ba8..8ea87a58e8 100644 --- a/Wox/Wox.csproj +++ b/Wox/Wox.csproj @@ -122,6 +122,7 @@ +