apprt/glfw: fix macos build

This commit is contained in:
Mitchell Hashimoto
2023-02-23 08:46:52 -08:00
parent fb13838532
commit 7991e6e495

View File

@ -86,7 +86,7 @@ pub const App = struct {
}
// Create the new window
const window = try self.newWindow(parent);
const window = try self.newSurface(parent);
// Add the new window the parent window
const parent_win = glfwNative.getCocoaWindow(parent.rt_surface.window).?;