diff --git a/WolvenKit/Forms/MVVM/frmMain.cs b/WolvenKit/Forms/MVVM/frmMain.cs index fa6f11a8..ec84e679 100644 --- a/WolvenKit/Forms/MVVM/frmMain.cs +++ b/WolvenKit/Forms/MVVM/frmMain.cs @@ -2236,7 +2236,8 @@ private void SetupUnbundling() return; // check path length - if (MainController.Get().Configuration.DepotPath.Length > 38) + //if (MainController.Get().Configuration.DepotPath.Length > 38) + if (MainController.Get().Configuration.DepotPath.Length > 255) { MainController.LogString("Wcc probably does not support path lengths > 255. " + "Please move your wcc_lite Modkit directory closer to root, e.g. C:\\Modkit\\.", Common.Services.Logtype.Error); diff --git a/WolvenKit/Forms/frmWelcome.cs b/WolvenKit/Forms/frmWelcome.cs index 80f67fd8..7f9af8cc 100644 --- a/WolvenKit/Forms/frmWelcome.cs +++ b/WolvenKit/Forms/frmWelcome.cs @@ -1,4 +1,4 @@ -using BrightIdeasSoftware; +using BrightIdeasSoftware; using System; using System.Collections.Generic; using System.ComponentModel; @@ -107,10 +107,11 @@ private void PopulateRecentFileList()
+