diff --git a/editor/studio/AMXX_Studio.cfg b/editor/studio/AMXX_Studio.cfg index d696e73a..2523f577 100755 --- a/editor/studio/AMXX_Studio.cfg +++ b/editor/studio/AMXX_Studio.cfg @@ -32,8 +32,8 @@ -M -$M16384,1048576 -K$00400000 --LE"c:\programme\borland\delphi7\Projects\Bpl" --LN"c:\programme\borland\delphi7\Projects\Bpl" +-LE"c:\program files\borland\delphi7\Projects\Bpl" +-LN"c:\program files\borland\delphi7\Projects\Bpl" -DmadExcept -w-UNSAFE_TYPE -w-UNSAFE_CODE diff --git a/editor/studio/AMXX_Studio.dof b/editor/studio/AMXX_Studio.dof index 79beca0b..c4da83d1 100755 --- a/editor/studio/AMXX_Studio.dof +++ b/editor/studio/AMXX_Studio.dof @@ -115,7 +115,7 @@ AutoIncBuild=1 MajorVer=1 MinorVer=4 Release=3 -Build=2 +Build=3 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.3.2 +FileVersion=1.4.3.3 InternalName= LegalCopyright=AMX Mod X Dev Team LegalTrademarks= diff --git a/editor/studio/AMXX_Studio.exe b/editor/studio/AMXX_Studio.exe index a5ddfae8..0004ce20 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 37eb844d..6a006d0d 100755 Binary files a/editor/studio/AMXX_Studio.res and b/editor/studio/AMXX_Studio.res differ diff --git a/editor/studio/UnitfrmHudMsgGenerator.pas b/editor/studio/UnitfrmHudMsgGenerator.pas index a3920648..7f2f4f3b 100755 --- a/editor/studio/UnitfrmHudMsgGenerator.pas +++ b/editor/studio/UnitfrmHudMsgGenerator.pas @@ -169,7 +169,7 @@ procedure TfrmHudMsgGenerator.txtTextKeyPress(Sender: TObject; var Key: Char); begin if Key = #13 then begin - txtText.SelText := '\n'; + txtText.SelText := '^n'; Key := #0; end; end; @@ -195,7 +195,7 @@ begin if txtText.Text = '' then lblHudMsg.Caption := 'Custom Hudmessage' else - lblHudMsg.Caption := StringReplace(txtText.Text, '\n', #13, [rfReplaceAll]); + lblHudMsg.Caption := StringReplace(txtText.Text, '^n', #13, [rfReplaceAll]); if chkXCenter.Checked then CenterX; @@ -267,10 +267,8 @@ var eVal: Real; begin try eVal := Round(StrToFloat(txtTimeToShow.Text)); - if eVal < 0 then begin - eVal := 0.0; + if eVal < 0 then txtTimeToShow.Text := '0,0'; - end; except txtTimeToShow.Text := '12,0'; end; diff --git a/editor/studio/UnitfrmMain.dfm b/editor/studio/UnitfrmMain.dfm index f9d18c28..e4fe1df4 100755 --- a/editor/studio/UnitfrmMain.dfm +++ b/editor/studio/UnitfrmMain.dfm @@ -4544,7 +4544,6 @@ object frmMain: TfrmMain TabOrder = 1 OnClick = cmdCancelClick CaptionGlowColor = clBtnFace - DropDownArrow = True LinkFont.Charset = DEFAULT_CHARSET LinkFont.Color = clBlue LinkFont.Height = -11 @@ -6569,6 +6568,7 @@ object frmMain: TfrmMain end object IdFTP: TIdFTP MaxLineAction = maSplit + ReadTimeout = 0 ProxySettings.ProxyType = fpcmNone ProxySettings.Port = 0 Left = 722