Skip to content

Commit 110ac55

Browse files
authored
fix: restore missing x11 default feature (#185)
I wasn't sure if this feature was left out intentionally but realized that it is actually one of the [default features](https://github.com/emilk/egui/blob/a2afc8d092a4e3f0b17675b114db8fad08810947/crates/eframe/Cargo.toml#L41) so created this PR to add it as I suspect it was an oversight rather than a conscious decision.
1 parent 93d7d8a commit 110ac55

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ eframe = { version = "0.31", default-features = false, features = [
1818
"glow", # Use the glow rendering backend. Alternative: "wgpu".
1919
"persistence", # Enable restoring app state when restarting the app.
2020
"wayland", # To support Linux (and CI)
21+
"x11", # To support older Linux distributions (restores one of the default features)
2122
] }
2223
log = "0.4.27"
2324

0 commit comments

Comments
 (0)