Skip to content

Commit 3e1db88

Browse files
authored
Revert change to winit event loop in egui_glium (#756)
* Revert change to winit event loop in egui_glium This reverts #631 Fixes #755 * Add example of file dialogs and file drag-and-drop * fix ci
1 parent 5539dbe commit 3e1db88

File tree

8 files changed

+377
-88
lines changed

8 files changed

+377
-88
lines changed

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
profile: minimal
8383
toolchain: 1.54.0
8484
override: true
85-
- run: sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev
85+
- run: sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev libgtk-3-dev # libgtk-3-dev is used by rfd
8686
- uses: actions-rs/cargo@v1
8787
with:
8888
command: test
@@ -115,7 +115,7 @@ jobs:
115115
toolchain: 1.54.0
116116
override: true
117117
- run: rustup component add clippy
118-
- run: sudo apt-get install libspeechd-dev
118+
- run: sudo apt-get install libspeechd-dev libgtk-3-dev # libgtk-3-dev is used by rfd
119119
- uses: actions-rs/cargo@v1
120120
with:
121121
command: clippy

Cargo.lock

+214
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eframe/CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog for eframe
22
All notable changes to the `eframe` and `epi` crates.
33

4+
NOTE: [`egui_web`](egui_web/CHANGELOG.md), [`egui-winit`](egui-winit/CHANGELOG.md) and [`egui_glium`](egui_glium/CHANGELOG.md) have their own changelogs!
5+
46

57
## Unreleased
68
* `Frame` now provides `set_decorations` to set whether to show window decorations.

eframe/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ egui_web = { version = "0.14.0", path = "../egui_web", default-features = false
3636

3737
[dev-dependencies]
3838
image = { version = "0.23", default-features = false, features = ["png"] }
39+
rfd = "0.5.0"
3940

4041
[features]
4142
default = ["default_fonts"]

0 commit comments

Comments
 (0)