mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-07 03:40:31 +02:00
ideintf: don't try to show empty hints
git-svn-id: trunk@22190 -
This commit is contained in:
parent
e2e83d6c1e
commit
b8cedf56c9
@ -3031,7 +3031,8 @@ begin
|
||||
HintType := GetHintTypeAt(Index,Position.X);
|
||||
if (HintType = pehName) and Assigned(OnPropertyHint) then
|
||||
begin
|
||||
if OnPropertyHint(Self, PointedRow, Position, FHintWindow, Rect, AHint) then
|
||||
if OnPropertyHint(Self, PointedRow, Position, FHintWindow, Rect, AHint) and
|
||||
(AHint <> '') then
|
||||
begin
|
||||
FHintIndex := Index;
|
||||
FShowingLongHint := True;
|
||||
|
Loading…
Reference in New Issue
Block a user