Skip to content

Commit b100479

Browse files
committed
enhance: immediately show new log lines on heavy operations, enhancing user experience
1 parent f8dc796 commit b100479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/main.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5546,7 +5546,7 @@ procedure TMainForm.LogSQL(Msg: String; Category: TDBLogCategory=lcInfo; Connect
55465546
SynMemoSQLLog.CaretY := SynMemoSQLLog.Lines.Count;
55475547
// Causes access violations on a reconnected session firing a user-query:
55485548
// SynMemoSQLLog.Repaint;
5549-
// SynMemoSQLLog.Update;
5549+
SynMemoSQLLog.Update; // Experimental: immediately shows new lines on heavy operations, enhancing user experience. Disable when crashes happen again!
55505550
// See TDBConnection.Log and TQueryThread.LogFromThread
55515551
// See https://github.com/HeidiSQL/HeidiSQL/issues/57
55525552

0 commit comments

Comments
 (0)