Fix multi column filter concatenated without OR after linebreak. See http://www.heidisql.com/forum.php?t=21005 and http://www.heidisql.com/forum.php?t=21007

This commit is contained in:
Ansgar Becker
2016-03-30 18:08:20 +00:00
parent c6a6b562cf
commit ecdce66677

View File

@ -8238,7 +8238,7 @@ begin
Line := '';
for i:=0 to Conditions.Count-1 do begin
if Length(Line) > 0 then
if i > 0 then
Line := Line + ' OR ';
Line := Line + Conditions[i];
// Add linebreak near right window edge