again bugfixes
This commit is contained in:
parent
cbcc91cc09
commit
e9db0c8c76
|
@ -115,7 +115,7 @@ AutoIncBuild=1
|
||||||
MajorVer=1
|
MajorVer=1
|
||||||
MinorVer=3
|
MinorVer=3
|
||||||
Release=0
|
Release=0
|
||||||
Build=35
|
Build=36
|
||||||
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.3.0.35
|
FileVersion=1.3.0.36
|
||||||
InternalName=
|
InternalName=
|
||||||
LegalCopyright=
|
LegalCopyright=
|
||||||
LegalTrademarks=
|
LegalTrademarks=
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1996,8 +1996,9 @@ begin
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
end
|
end;
|
||||||
else if (eCurrStyle = 11) or (eCurrStyle = 10) or (eCurrStyle = 9) or (eCurrStyle = 8) or (eCurrStyle = 5) or (eCurrStyle = 4) or (eCurrStyle = 0) or (eCurrStyle >= 34) then
|
|
||||||
|
if (eCurrStyle = 11) or (eCurrStyle = 10) or (eCurrStyle = 9) or (eCurrStyle = 8) or (eCurrStyle = 5) or (eCurrStyle = 4) or (eCurrStyle = 0) or (eCurrStyle >= 34) then
|
||||||
CancelDisplay := False
|
CancelDisplay := False
|
||||||
else
|
else
|
||||||
CancelDisplay := True;
|
CancelDisplay := True;
|
||||||
|
@ -2141,7 +2142,7 @@ var i: integer;
|
||||||
begin
|
begin
|
||||||
CancelDisplay := not Plugin_CallTipShow(ListToDisplay.GetText);
|
CancelDisplay := not Plugin_CallTipShow(ListToDisplay.GetText);
|
||||||
eFunction := GetCurrFunc;
|
eFunction := GetCurrFunc;
|
||||||
if (frmSettings.chkAutoHideCT.Checked) and (eFunction <> '') then begin
|
if (frmSettings.chkAutoHideCT.Checked) and (not CancelDisplay) and (eFunction <> '') then begin
|
||||||
eFunction := LowerCase(eFunction);
|
eFunction := LowerCase(eFunction);
|
||||||
|
|
||||||
for i := 0 to eACList.Count -1 do begin
|
for i := 0 to eACList.Count -1 do begin
|
||||||
|
|
|
@ -64,7 +64,7 @@ object frmSettings: TfrmSettings
|
||||||
Top = 0
|
Top = 0
|
||||||
Width = 351
|
Width = 351
|
||||||
Height = 260
|
Height = 260
|
||||||
ActivePage = jspAutocompleteCheck
|
ActivePage = jspHighlighter
|
||||||
PropagateEnable = False
|
PropagateEnable = False
|
||||||
Align = alClient
|
Align = alClient
|
||||||
OnChange = jplSettingsChange
|
OnChange = jplSettingsChange
|
||||||
|
@ -110,7 +110,7 @@ object frmSettings: TfrmSettings
|
||||||
Height = 21
|
Height = 21
|
||||||
Style = csDropDownList
|
Style = csDropDownList
|
||||||
Color = clWindow
|
Color = clWindow
|
||||||
ItemHeight = 0
|
ItemHeight = 13
|
||||||
TabOrder = 0
|
TabOrder = 0
|
||||||
ItemIndex = -1
|
ItemIndex = -1
|
||||||
OnChange = cboLanguageChange
|
OnChange = cboLanguageChange
|
||||||
|
|
Loading…
Reference in New Issue
Block a user