Skip to content

Commit

Permalink
linux: note that wayland cannot be resized anymore
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
joshua-holmes authored and emidoots committed Dec 24, 2024
1 parent f39d47e commit 9a4ae36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Linux.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 9a4ae36

Please sign in to comment.