Emil Ernerfeldt
Emil Ernerfeldt
Have you run the setup code in https://github.com/emilk/egui#demo (`sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libspeechd-dev libxkbcommon-dev libssl-dev`)?
Note that you don't _need_ `speech-dispatcher` - it is only for the experimental `screen_reader` feature.
A lot of people seems to be affected by this - anyone want to work on it? Either by disabling `speech-dispatcher` on Arch, or fixing `speech-dispatcher` upstream, or altering `check.sh`,...
I pushed a commit that makes it easier to just disable tts when you want to test on Linux. If you apply this patch, then `cargo check --all-features` will work:...
Blur is difficult, as it requires a post-processing pass which complicates the egui rendering by a lot. But adding custom `Shape`:s as background for widgets would be nice. Once https://github.com/emilk/egui/issues/1516...
Wow, [egui_docking](https://github.com/lain-dono/egui_docking) look really neat @cirrusone ! 
A lot of egui users have been making their own decorations, so it is definitely possible (see for instance https://www.youtube.com/watch?v=NtUkr_z7l84). It would be very nice with an official eframe example...
There is an example of painting your own window frame in https://github.com/emilk/egui/tree/master/examples/custom_window_frame
@Krysme have you tried debugging it? Is `close_response.clicked()` ever `true`? Is `frame.quit();` called?
I think the `trait` can be simplified with a single `load` and `unload` function, with several params, like `size: Option` and then helper functions that are always implementead. I don't...