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