mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Prevent inserting cell text ellipsis in query tab. See https://www.heidisql.com/forum.php?t=23353
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user