SameBoy | Accurate GB/GBC emulator |
| download: https://git.y1.nz/archives/sameboy.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 31340d2a901085e15419e2f68eb4932a9acbe42e parent 1a85abfd2ac9934f95cd09b81699be1b3a58b540 Author: Lior Halphon <LIJI32@gmail.com> Date: Sun, 6 Nov 2022 13:52:02 +0200 Fix debugger buttons appearing glitched on newer versions of macOS, fixes #509 Diffstat:
| M | Cocoa/GBDebuggerButton.m | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Cocoa/GBDebuggerButton.m b/Cocoa/GBDebuggerButton.m @@ -8,6 +8,7 @@ { self = [super initWithCoder:coder]; self.toolTip = self.title; + self.imagePosition = NSImageOnly; // Newer versions of AppKit refuse to respect the value from the nib file return self; } @@ -32,7 +33,7 @@ } } --(void)updateTrackingAreas +- (void)updateTrackingAreas { [super updateTrackingAreas]; if (_trackingArea) {
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.