From 9a4ae36cb6274da4e4e42a2812ab60aa8b98dfc9 Mon Sep 17 00:00:00 2001 From: Joshua Holmes Date: Fri, 20 Dec 2024 07:18:03 +0000 Subject: [PATCH] linux: note that wayland cannot be resized anymore This is because something is not working with the new Mach Object system. It should be able to be fixed after messing around with it. --- src/core/Linux.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/Linux.zig b/src/core/Linux.zig index 21bb2f22..7351d8d4 100644 --- a/src/core/Linux.zig +++ b/src/core/Linux.zig @@ -56,7 +56,7 @@ backend: Backend, // these arrays are used as info messages to the user that some features are missing // please keep these up to date until we can remove them const MISSING_FEATURES_X11 = [_][]const u8{ "Resizing window", "Changing display mode", "VSync", "Setting window border/cursor" }; -const MISSING_FEATURES_WAYLAND = [_][]const u8{ "Changing display mode", "VSync", "Setting window border/cursor" }; +const MISSING_FEATURES_WAYLAND = [_][]const u8{ "Resizing window", "Changing display mode", "VSync", "Setting window border/cursor" }; pub fn tick(core: *Core) !void { var windows = core.windows.slice();