From 976fe7a3378f42a40d84ecb8fe17470b259451b8 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sun, 8 Jun 2025 01:30:17 +0300 Subject: [PATCH] The sideview shouldn't automatically scroll --- Cocoa/Document.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Cocoa/Document.m b/Cocoa/Document.m index 4fcfb08..67ce516 100644 --- a/Cocoa/Document.m +++ b/Cocoa/Document.m @@ -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]; }