mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 01:56:36 +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;
|
end;
|
||||||
else begin
|
else begin
|
||||||
CellText := Results.Col(Column);
|
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 + ' [...]';
|
CellText := CellText + ' [...]';
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
|
Reference in New Issue
Block a user