mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-08-04 14:46:03 +00:00
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:
parent
0c5d59bcf6
commit
bed3adcc95
1 changed files with 1 additions and 1 deletions
|
|
@ -440,7 +440,7 @@ cocoa_set_titlebar_color(void *w, color_type titlebar_color)
|
|||
{
|
||||
@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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue