diff --git a/editor/studio/AMXX_Studio.dof b/editor/studio/AMXX_Studio.dof index 6600cb74..e874a801 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=1 +Build=4 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.1 +FileVersion=1.4.0.4 InternalName=gaben LegalCopyright=AMX Mod X Dev Team LegalTrademarks= diff --git a/editor/studio/AMXX_Studio.exe b/editor/studio/AMXX_Studio.exe index e409a0d3..692c27a1 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 7a637e24..12e44678 100755 Binary files a/editor/studio/AMXX_Studio.res and b/editor/studio/AMXX_Studio.res differ diff --git a/editor/studio/UnitfrmInfo.dfm b/editor/studio/UnitfrmInfo.dfm index 1750bae9..19732861 100755 Binary files a/editor/studio/UnitfrmInfo.dfm and b/editor/studio/UnitfrmInfo.dfm differ diff --git a/editor/studio/UnitfrmInfo.pas b/editor/studio/UnitfrmInfo.pas index b872b2b3..0fcb3e3a 100755 --- a/editor/studio/UnitfrmInfo.pas +++ b/editor/studio/UnitfrmInfo.pas @@ -14,7 +14,7 @@ type lblInfo1: TLabel; imgAMXXLarge: TImage; cmdClose: TSpTBXButton; - lblCHelp: TLabel; + lblDonations: TLabel; lblScintilla1: TLabel; lblScintilla2: TLabel; pnlImages: TPanel; diff --git a/editor/studio/UnitfrmMain.dfm b/editor/studio/UnitfrmMain.dfm index 8cde54cb..b5736665 100755 --- a/editor/studio/UnitfrmMain.dfm +++ b/editor/studio/UnitfrmMain.dfm @@ -756,6 +756,7 @@ object frmMain: TfrmMain Align = alClient OnModified = sciEditorModified OnDblClick = sciEditorDblClick + OnCallTipClick = sciEditorCallTipClick OnKeyUp = sciEditorKeyUp OnKeyDown = sciEditorKeyDown OnKeyPress = sciEditorKeyPress diff --git a/editor/studio/UnitfrmMain.pas b/editor/studio/UnitfrmMain.pas index bc0235fd..837646b9 100755 --- a/editor/studio/UnitfrmMain.pas +++ b/editor/studio/UnitfrmMain.pas @@ -2947,6 +2947,7 @@ end; procedure TfrmMain.FormCreate(Sender: TObject); begin sciEditor.StreamClass := TSciMyStream; + sciEditor.OnCallTipClick := sciEditorCallTipClick; // god why doesn't delphi save this eACList := TmxJsCollection.Create(TACFunction); eACList.Collectionname := 'Autocomplete_List'; eACList.LoadFromFile(ExtractFilePath(ParamStr(0)) + 'config\ACList.cfg');