The sideview shouldn't automatically scroll

This commit is contained in:
Lior Halphon 2025-06-08 01:30:17 +03:00
parent 1400bd40e8
commit 976fe7a337
1 changed files with 3 additions and 1 deletions

View File

@ -1568,7 +1568,9 @@ enum GBWindowResizeAction
[self reloadVRAMData: nil];
[textView.textStorage appendAttributedString:_pendingConsoleOutput];
[textView scrollToEndOfDocument:nil];
if (!_logToSideView) {
[textView scrollToEndOfDocument:nil];
}
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DeveloperMode"]) {
[self.consoleWindow orderFront:nil];
}