again bugfixes

This commit is contained in:
Christian Hammacher
2005-11-25 21:44:18 +00:00
parent cbcc91cc09
commit e9db0c8c76
6 changed files with 8 additions and 7 deletions

View File

@ -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