mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Update loop for slideshow will be called when installing
This commit is contained in:
parent
558c937220
commit
9a28369637
@ -56,6 +56,7 @@ namespace Wabbajack
|
||||
Mode = mode;
|
||||
Dirty = false;
|
||||
dispatcher = d;
|
||||
<<<<<<< HEAD
|
||||
|
||||
var th = new Thread(() => UpdateLoop())
|
||||
{
|
||||
@ -63,6 +64,11 @@ namespace Wabbajack
|
||||
IsBackground = true
|
||||
};
|
||||
th.Start();
|
||||
=======
|
||||
Log = new ObservableCollection<string>();
|
||||
Status = new ObservableCollection<CPUStatus>();
|
||||
InternalStatus = new List<CPUStatus>();
|
||||
>>>>>>> Update loop for slideshow will be called when installing
|
||||
}
|
||||
|
||||
private void SetupSlideshow()
|
||||
@ -442,6 +448,12 @@ namespace Wabbajack
|
||||
UIReady = false;
|
||||
if (Mode == "Installing")
|
||||
{
|
||||
var thSlideShow = new Thread(() => UpdateLoop())
|
||||
{
|
||||
Priority = ThreadPriority.BelowNormal,
|
||||
IsBackground = true
|
||||
};
|
||||
thSlideShow.Start();
|
||||
var installer = new Installer(_modListPath, _modList, Location)
|
||||
{
|
||||
DownloadFolder = DownloadLocation
|
||||
|
Loading…
Reference in New Issue
Block a user