From 526b3f529b5df57a4b847fdff3869406b22ad679 Mon Sep 17 00:00:00 2001 From: Cody Wyatt Neiman Date: Sun, 15 Dec 2024 16:12:19 -0500 Subject: [PATCH] Reorder egui-winit feature deps in eframe --- crates/eframe/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/eframe/Cargo.toml b/crates/eframe/Cargo.toml index d272ae1d945..f1cb3121945 100644 --- a/crates/eframe/Cargo.toml +++ b/crates/eframe/Cargo.toml @@ -87,11 +87,11 @@ puffin = [ ## Enables wayland support and fixes clipboard issue. wayland = [ "egui-winit/wayland", + "egui-winit/clipboard-wayland", "egui-wgpu?/wayland", "egui_glow?/wayland", "glutin?/wayland", "glutin-winit?/wayland", - "egui-winit/clipboard-wayland", ] ## Enable screen reader support (requires `ctx.options_mut(|o| o.screen_reader = true);`) on web. @@ -120,13 +120,13 @@ wgpu = ["dep:wgpu", "dep:egui-wgpu", "dep:pollster"] ## Enables compiling for x11. x11 = [ "egui-winit/x11", + "egui-winit/clipboard-nonwayland", "egui-wgpu?/x11", "egui_glow?/x11", "glutin?/x11", "glutin?/glx", "glutin-winit?/x11", "glutin-winit?/glx", - "egui-winit/clipboard-nonwayland", ] ## If set, eframe will look for the env-var `EFRAME_SCREENSHOT_TO` and write a screenshot to that location, and then quit.