From b2d1086e2e017c8a2b2da85bc77ac23b5b4729c1 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sat, 8 Jun 2024 20:34:26 +0300 Subject: [PATCH] Make the console window not always on top --- Cocoa/Document.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cocoa/Document.m b/Cocoa/Document.m index ab0037361..19dd1a475 100644 --- a/Cocoa/Document.m +++ b/Cocoa/Document.m @@ -781,6 +781,8 @@ - (void)windowControllerDidLoadNib:(NSWindowController *)aController self.memoryWindow.title = [NSString stringWithFormat:@"Memory – %@", [self.fileURL.path lastPathComponent]]; self.vramWindow.title = [NSString stringWithFormat:@"VRAM Viewer – %@", [self.fileURL.path lastPathComponent]]; + self.consoleWindow.level = NSNormalWindowLevel; + self.debuggerSplitView.dividerColor = self.debuggerVerticalLine.borderColor; [self.debuggerVerticalLine removeFromSuperview]; // No longer used, just there for the color if (@available(macOS 11.0, *)) {