fixed 3rd bug at48369
This commit is contained in:
parent
34f127b9aa
commit
f03449acbd
|
@ -32,8 +32,8 @@
|
||||||
-M
|
-M
|
||||||
-$M16384,1048576
|
-$M16384,1048576
|
||||||
-K$00400000
|
-K$00400000
|
||||||
-LE"c:\programme\borland\delphi7\Projects\Bpl"
|
-LE"c:\program files\borland\delphi7\Projects\Bpl"
|
||||||
-LN"c:\programme\borland\delphi7\Projects\Bpl"
|
-LN"c:\program files\borland\delphi7\Projects\Bpl"
|
||||||
-DmadExcept
|
-DmadExcept
|
||||||
-w-UNSAFE_TYPE
|
-w-UNSAFE_TYPE
|
||||||
-w-UNSAFE_CODE
|
-w-UNSAFE_CODE
|
||||||
|
|
|
@ -115,7 +115,7 @@ AutoIncBuild=1
|
||||||
MajorVer=1
|
MajorVer=1
|
||||||
MinorVer=4
|
MinorVer=4
|
||||||
Release=3
|
Release=3
|
||||||
Build=2
|
Build=3
|
||||||
Debug=0
|
Debug=0
|
||||||
PreRelease=0
|
PreRelease=0
|
||||||
Special=0
|
Special=0
|
||||||
|
@ -126,7 +126,7 @@ CodePage=1252
|
||||||
[Version Info Keys]
|
[Version Info Keys]
|
||||||
CompanyName=AMX Mod X Dev Team
|
CompanyName=AMX Mod X Dev Team
|
||||||
FileDescription=
|
FileDescription=
|
||||||
FileVersion=1.4.3.2
|
FileVersion=1.4.3.3
|
||||||
InternalName=
|
InternalName=
|
||||||
LegalCopyright=AMX Mod X Dev Team
|
LegalCopyright=AMX Mod X Dev Team
|
||||||
LegalTrademarks=
|
LegalTrademarks=
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -169,7 +169,7 @@ procedure TfrmHudMsgGenerator.txtTextKeyPress(Sender: TObject;
|
||||||
var Key: Char);
|
var Key: Char);
|
||||||
begin
|
begin
|
||||||
if Key = #13 then begin
|
if Key = #13 then begin
|
||||||
txtText.SelText := '\n';
|
txtText.SelText := '^n';
|
||||||
Key := #0;
|
Key := #0;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
@ -195,7 +195,7 @@ begin
|
||||||
if txtText.Text = '' then
|
if txtText.Text = '' then
|
||||||
lblHudMsg.Caption := 'Custom Hudmessage'
|
lblHudMsg.Caption := 'Custom Hudmessage'
|
||||||
else
|
else
|
||||||
lblHudMsg.Caption := StringReplace(txtText.Text, '\n', #13, [rfReplaceAll]);
|
lblHudMsg.Caption := StringReplace(txtText.Text, '^n', #13, [rfReplaceAll]);
|
||||||
|
|
||||||
if chkXCenter.Checked then
|
if chkXCenter.Checked then
|
||||||
CenterX;
|
CenterX;
|
||||||
|
@ -267,10 +267,8 @@ var eVal: Real;
|
||||||
begin
|
begin
|
||||||
try
|
try
|
||||||
eVal := Round(StrToFloat(txtTimeToShow.Text));
|
eVal := Round(StrToFloat(txtTimeToShow.Text));
|
||||||
if eVal < 0 then begin
|
if eVal < 0 then
|
||||||
eVal := 0.0;
|
|
||||||
txtTimeToShow.Text := '0,0';
|
txtTimeToShow.Text := '0,0';
|
||||||
end;
|
|
||||||
except
|
except
|
||||||
txtTimeToShow.Text := '12,0';
|
txtTimeToShow.Text := '12,0';
|
||||||
end;
|
end;
|
||||||
|
|
|
@ -4544,7 +4544,6 @@ object frmMain: TfrmMain
|
||||||
TabOrder = 1
|
TabOrder = 1
|
||||||
OnClick = cmdCancelClick
|
OnClick = cmdCancelClick
|
||||||
CaptionGlowColor = clBtnFace
|
CaptionGlowColor = clBtnFace
|
||||||
DropDownArrow = True
|
|
||||||
LinkFont.Charset = DEFAULT_CHARSET
|
LinkFont.Charset = DEFAULT_CHARSET
|
||||||
LinkFont.Color = clBlue
|
LinkFont.Color = clBlue
|
||||||
LinkFont.Height = -11
|
LinkFont.Height = -11
|
||||||
|
@ -6569,6 +6568,7 @@ object frmMain: TfrmMain
|
||||||
end
|
end
|
||||||
object IdFTP: TIdFTP
|
object IdFTP: TIdFTP
|
||||||
MaxLineAction = maSplit
|
MaxLineAction = maSplit
|
||||||
|
ReadTimeout = 0
|
||||||
ProxySettings.ProxyType = fpcmNone
|
ProxySettings.ProxyType = fpcmNone
|
||||||
ProxySettings.Port = 0
|
ProxySettings.Port = 0
|
||||||
Left = 722
|
Left = 722
|
||||||
|
|
Loading…
Reference in New Issue
Block a user