mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user