mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Issue #629: do not limit the second column in the query helpers box to a width of 100 pixels
This commit is contained in:
@ -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;
|
||||
|
||||
|
Reference in New Issue
Block a user