Don't kill connection thread if user cancels closing

This commit is contained in:
baldurk
2014-12-18 18:02:50 +00:00
parent bbbf18b6f3
commit 6b34b5815d
@@ -459,7 +459,10 @@ namespace renderdocui.Windows
private void LiveCapture_FormClosing(object sender, FormClosingEventArgs e)
{
if (CheckAllowClose() == false)
{
e.Cancel = true;
return;
}
KillThread();
}