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() +
  • Features and Guidelines
  • WolvenKit Wiki
  • GitHub Repository
  • Package creation
  • -
  • Sound modding
  • +
  • Sound modding
  • "; @@ -149,8 +150,10 @@ protected void ApplyCustomTheme() wolvenKitLbl.ForeColor = UIController.GetForeColor(); helpWebBrowser.DocumentText = DocumentText; + helpWebBrowser.Navigating += HelpWebBrowser_Navigating; } + public const int WM_NCLBUTTONDOWN = 0xA1; public const int HT_CAPTION = 0x2; @@ -158,8 +161,14 @@ protected void ApplyCustomTheme() public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); [System.Runtime.InteropServices.DllImport("user32.dll")] public static extern bool ReleaseCapture(); - + // UI Events // + + private void HelpWebBrowser_Navigating(object sender, WebBrowserNavigatingEventArgs e) + { + e.Cancel = true; + Process.Start(e.Url.ToString()); + } private void mainMenuStrip_MouseDown(object sender, MouseEventArgs e) {