Prevent inserting cell text ellipsis in query tab. See https://www.heidisql.com/forum.php?t=23353

This commit is contained in:
Ansgar Becker
2017-02-23 17:26:55 +00:00
parent b4806065c2
commit e74ccecb75

View File

@ -8517,7 +8517,7 @@ begin
end;
else begin
CellText := Results.Col(Column);
if (Length(CellText) = GRIDMAXDATA) and (not Results.HasFullData) then
if (Length(CellText) = GRIDMAXDATA) and (not Results.HasFullData) and (Sender = DataGrid) then
CellText := CellText + ' [...]';
end;
end;