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.
This commit is contained in:
Joshua Holmes 2024-12-20 07:18:03 +00:00 committed by Emi Gutekanst
parent f39d47e49c
commit 9a4ae36cb6

View file

@ -56,7 +56,7 @@ backend: Backend,
// these arrays are used as info messages to the user that some features are missing // 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 // 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_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 { pub fn tick(core: *Core) !void {
var windows = core.windows.slice(); var windows = core.windows.slice();