Remove space from cast in kitty/cocoa_window.m

All the other casts to `NSWindow` in this file have the same formatting.
This commit is contained in:
Luflosi 2019-07-24 11:01:36 -05:00
parent 0c5d59bcf6
commit bed3adcc95
No known key found for this signature in database
GPG key ID: 14140F703B7D8362

View file

@ -440,7 +440,7 @@ - (void)openFilesFromPasteboard:(NSPasteboard *)pasteboard type:(int)type {
{
@autoreleasepool {
NSWindow *window = (NSWindow *)w;
NSWindow *window = (NSWindow*)w;
double red = ((titlebar_color >> 16) & 0xFF) / 255.0;
double green = ((titlebar_color >> 8) & 0xFF) / 255.0;