Skip to content

Commit

Permalink
Prevent inserting cell text ellipsis in query tab. See https://www.he…
Browse files Browse the repository at this point in the history
  • Loading branch information
ansgarbecker committed Feb 23, 2017
1 parent b480606 commit e74ccec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/main.pas
Expand Up @@ -8517,7 +8517,7 @@ procedure TMainForm.AnyGridGetText(Sender: TBaseVirtualTree; Node: PVirtualNode;
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;
Expand Down

0 comments on commit e74ccec

Please sign in to comment.