We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df80dbf commit 6f5a2d1Copy full SHA for 6f5a2d1
source/main.pas
@@ -4230,6 +4230,10 @@ function TMainform.InitConnection(Params: TConnectionParameters; ActivateMe: Boo
4230
if ActivateMe then begin
4231
// Set focus on last uses db. If not wanted or db is gone, go to root node at least
4232
RestoreLastActiveDatabase := AppSettings.ReadBool(asRestoreLastUsedDB);
4233
+ {$IFDEF DARWIN}
4234
+ // Workaround: Prevent host sub-tabs from getting disabled on macOS, issue #2339
4235
+ RestoreLastActiveDatabase := False;
4236
+ {$ENDIF}
4237
AppSettings.SessionPath := Params.SessionPath;
4238
LastActiveDatabase := AppSettings.ReadString(asLastUsedDB);
4239
if RestoreLastActiveDatabase
0 commit comments