apprt/gtk: fix build for macos non-native fullscreen changes

This commit is contained in:
Mitchell Hashimoto
2023-08-04 18:19:48 -07:00
parent 90cdcab190
commit 8ff81de30f

View File

@ -828,8 +828,8 @@ pub const Surface = struct {
c.gtk_widget_show(alert); c.gtk_widget_show(alert);
} }
pub fn toggleFullscreen(self: *Surface) void { pub fn toggleFullscreen(self: *Surface, mac_non_native: bool) void {
self.window.toggleFullscreen(); self.window.toggleFullscreen(mac_non_native);
} }
pub fn newTab(self: *Surface) !void { pub fn newTab(self: *Surface) !void {