From 9abdbb5993f3a98fdd668e8e89f3fbd658f53a08 Mon Sep 17 00:00:00 2001 From: Ansgar Becker Date: Mon, 13 Jul 2020 15:03:33 +0200 Subject: [PATCH] Issue #629: do not limit the second column in the query helpers box to a width of 100 pixels --- source/main.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.pas b/source/main.pas index ae8f71cf..372bdb16 100644 --- a/source/main.pas +++ b/source/main.pas @@ -12681,7 +12681,7 @@ begin if Tree.Header.Columns.Count >= 2 then begin // See https://github.com/HeidiSQL/HeidiSQL/issues/466 // Column count may be 0 in an early stage of creating a new query tab - Tree.Header.Columns[1].Width := Min(Tree.Width div 3, 100); + Tree.Header.Columns[1].Width := Max(Tree.Width div 3, 100); end; end;