mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix msedgewebview2.exe leak
This commit is contained in:
parent
d870f15ebd
commit
a3ccc58614
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
#### Version - 3.0.1.5 - 9/??/2022
|
#### Version - 3.0.1.5 - 9/??/2022
|
||||||
* Fix MO2ArchiveName resolution
|
* Fix MO2ArchiveName resolution
|
||||||
|
* Improve performance of the compiler stack
|
||||||
|
* Save the location of the browser window and open the next window in the same location
|
||||||
|
* Fix a leak of msedgwebview2.exe instances when doing manual downloads
|
||||||
|
|
||||||
|
|
||||||
#### Version - 3.0.1.4 - 9/21/2022
|
#### Version - 3.0.1.4 - 9/21/2022
|
||||||
* Fix several of case sensitive path comparisons, that could result in deleting downloads
|
* Fix several of case sensitive path comparisons, that could result in deleting downloads
|
||||||
|
@ -54,6 +54,11 @@ public partial class BrowserWindow : MetroWindow
|
|||||||
});
|
});
|
||||||
|
|
||||||
vm.RunWrapper(CancellationToken.None)
|
vm.RunWrapper(CancellationToken.None)
|
||||||
.ContinueWith(_ => Dispatcher.Invoke(Close));
|
.ContinueWith(_ => Dispatcher.Invoke(() =>
|
||||||
|
{
|
||||||
|
Close();
|
||||||
|
Browser.Dispose();
|
||||||
|
Browser = null;
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user