Skip to content

Commit

Permalink
Fixed deadlock when searching for updates with log viewer open
Browse files Browse the repository at this point in the history
  • Loading branch information
ManlyMarco committed Oct 1, 2020
1 parent c27bfde commit 10c2fde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/KKManager/Windows/ToolWindows/LogViewer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public LogViewerWriter(TextBox target)

public override void Write(string value)
{
_target.SafeInvoke(() => _target.AppendText(value));
_target.BeginInvoke(new Action(() => _target.AppendText(value)));
}
}
}
Expand Down

0 comments on commit 10c2fde

Please sign in to comment.