diff --git a/editor/studio/AMXX_Studio.dof b/editor/studio/AMXX_Studio.dof index 00f75ee4..3aedb116 100755 --- a/editor/studio/AMXX_Studio.dof +++ b/editor/studio/AMXX_Studio.dof @@ -115,7 +115,7 @@ AutoIncBuild=1 MajorVer=1 MinorVer=4 Release=0 -Build=13 +Build=15 Debug=0 PreRelease=0 Special=0 @@ -126,7 +126,7 @@ CodePage=1252 [Version Info Keys] CompanyName=AMX Mod X Dev Team FileDescription= -FileVersion=1.4.0.13 +FileVersion=1.4.0.15 InternalName=gaben LegalCopyright=AMX Mod X Dev Team LegalTrademarks= diff --git a/editor/studio/AMXX_Studio.exe b/editor/studio/AMXX_Studio.exe index 152ba7ab..3827c90a 100755 Binary files a/editor/studio/AMXX_Studio.exe and b/editor/studio/AMXX_Studio.exe differ diff --git a/editor/studio/AMXX_Studio.res b/editor/studio/AMXX_Studio.res index 67d6d3f3..99308686 100755 Binary files a/editor/studio/AMXX_Studio.res and b/editor/studio/AMXX_Studio.res differ diff --git a/editor/studio/UnitPlugins.pas b/editor/studio/UnitPlugins.pas index daca3ec4..5496d14c 100755 --- a/editor/studio/UnitPlugins.pas +++ b/editor/studio/UnitPlugins.pas @@ -269,7 +269,10 @@ begin hClose := PHandle(frmClose.Handle); hConnGen := PHandle(frmConnGen.Handle); hGoToLine := PHandle(frmGoToLine.Handle); - hHTMLPreview := PHandle(frmHTMLPreview.Handle); + if Assigned(frmHTMLPreview) then + hHTMLPreview := PHandle(frmHTMLPreview.Handle) + else + hHTMLPreview := PHandle(0); hHudMsgGenerator := PHandle(frmHudMsgGenerator.Handle); hInfo := PHandle(frmInfo.Handle); hIRCPaster := PHandle(frmIRCPaster.Handle);