Skip to content

Commit

Permalink
Fix crash when showing hint (animation) on grid cells with large text…
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Oct 5, 2016
1 parent 2b12bbc commit 287ac27
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/main.pas
Expand Up @@ -7158,7 +7158,11 @@ procedure TMainForm.AnyGridGetHint(Sender: TBaseVirtualTree; Node:
Tree := TVirtualStringTree(Sender);
HintText := Tree.Text[Node, Column];
HintText := sstr(HintText, SIZE_KB);
LineBreakStyle := hlbForceSingleLine;
// See http://www.heidisql.com/forum.php?t=20458#p20548
if Sender = DBtree then
LineBreakStyle := hlbForceSingleLine
else
LineBreakStyle := hlbForceMultiLine;
end;
end;

Expand Down

0 comments on commit 287ac27

Please sign in to comment.