mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 20:27:36 +02:00
Add QueryHistory to Wox (Ctrl+Up and Ctrl+Down)
This commit is contained in:
@@ -55,13 +55,18 @@ namespace Wox.CrashReporter
|
||||
|
||||
private void SendReport()
|
||||
{
|
||||
string reproduceSteps =
|
||||
new TextRange(tbReproduceSteps.Document.ContentStart, tbReproduceSteps.Document.ContentEnd).Text;
|
||||
exception.ToExceptionless()
|
||||
.SetUserDescription(reproduceSteps)
|
||||
.Submit();
|
||||
ExceptionlessClient.Current.ProcessQueue();
|
||||
Close();
|
||||
ThreadPool.QueueUserWorkItem(o =>
|
||||
{
|
||||
string reproduceSteps = new TextRange(tbReproduceSteps.Document.ContentStart, tbReproduceSteps.Document.ContentEnd).Text;
|
||||
exception.ToExceptionless()
|
||||
.SetUserDescription(reproduceSteps)
|
||||
.Submit();
|
||||
ExceptionlessClient.Current.ProcessQueue();
|
||||
Dispatcher.Invoke(new Action(() =>
|
||||
{
|
||||
Close();
|
||||
}));
|
||||
});
|
||||
}
|
||||
|
||||
private void btnCancel_Click(object sender, RoutedEventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user