From d8e653a16009b2583226ea7d1f9a264620be0be5 Mon Sep 17 00:00:00 2001 From: Matyas Basa <49882580+0matyesz0@users.noreply.github.com> Date: Mon, 27 Feb 2023 14:18:50 +0100 Subject: [PATCH] Update webBrowser element in welcome form. --- WolvenKit/Forms/MVVM/frmMain.cs | 3 ++- WolvenKit/Forms/frmWelcome.cs | 15 ++++++++++++--- 2 files changed, 14 insertions(+), 4 deletions(-) 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()
+