From e74ccecb75fdb27ca1a09ada4d699eb85901463e Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Thu, 23 Feb 2017 17:26:55 +0000 Subject: [PATCH] Prevent inserting cell text ellipsis in query tab. See https://www.heidisql.com/forum.php?t=23353 --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index 08bde9ff..c95f190b 100644 --- a/source/main.pas +++ b/source/main.pas @@ -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;