We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8096751 commit 3b93208Copy full SHA for 3b93208
SharedProject/Core/ReportGenerator/ReportGeneratorUtil.cs
@@ -125,12 +125,12 @@ IEventAggregator eventAggregator
125
scriptManager.ShowFCCOutputPaneEvent += ScriptManager_ShowFCCOutputPaneEvent;
126
}
127
128
- private async void ScriptManager_ShowFCCOutputPaneEvent(object sender, EventArgs e)
+ private void ScriptManager_ShowFCCOutputPaneEvent(object sender, EventArgs e)
129
{
130
- await showFCCOutputPane.ShowAsync();
+ ThreadHelper.JoinableTaskFactory.RunAsync(() => showFCCOutputPane.ShowAsync());
131
132
133
- private void ScriptManager_ClearFCCWindowLogsEvent(object sender, EventArgs e)
+ private void ScriptManager_ClearFCCWindowLogsEvent(object sender, EventArgs e)
134
135
logs.Clear();
136
0 commit comments