We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 402400e commit 4130516Copy full SHA for 4130516
src/glfm_apple.m
@@ -2870,6 +2870,12 @@ - (void)applicationWillFinishLaunching:(NSNotification *)notification {
2870
contentFrame.origin.y = screenFrame.origin.y + screenFrame.size.height / 2 - height / 2;
2871
contentFrame.size.width = width;
2872
contentFrame.size.height = height;
2873
+#if 0
2874
+ // Useful for creating example app icons
2875
+ contentFrame.size.width = 128;
2876
+ contentFrame.size.height = 128;
2877
+ [self.window setStyleMask:NSWindowStyleMaskBorderless];
2878
+#endif
2879
[self.window setFrame:[self.window frameRectForContentRect:contentFrame] display:NO];
2880
}
2881
0 commit comments