mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-07 15:37:14 +02:00
Correct bug in previous commit
This commit is contained in:
@@ -925,7 +925,7 @@ static BOOL isUnsafeMessage(int msgid);
|
||||
[self scheduleClose];
|
||||
} else if (SetFullscreenColorMsgID == msgid) {
|
||||
const int *bg = (const int*)[data bytes];
|
||||
NSColor *color = [NSColor colorWithRgbInt:bg];
|
||||
NSColor *color = [NSColor colorWithRgbInt:*bg];
|
||||
|
||||
[windowController setFullscreenBackgroundColor:color];
|
||||
// IMPORTANT: When adding a new message, make sure to update
|
||||
|
||||
Reference in New Issue
Block a user