From 7991e6e495a3350330b304f63918d54cabf13103 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 23 Feb 2023 08:46:52 -0800 Subject: [PATCH] apprt/glfw: fix macos build --- src/apprt/glfw.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apprt/glfw.zig b/src/apprt/glfw.zig index 3faab933d..6ba10656d 100644 --- a/src/apprt/glfw.zig +++ b/src/apprt/glfw.zig @@ -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).?;