1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -04:00

egui-winit: re-enable window transparency (#1126)

`winit` 0.26.1 fixes the crash on Windows 11
This commit is contained in:
Jay Oster
2022-01-17 05:32:16 -08:00
committed by GitHub
parent 5bedf73566
commit ffa1b6bd43
3 changed files with 56 additions and 69 deletions

View File

@@ -10,7 +10,7 @@ fn main() {
let app = egui_demo_lib::WrapApp::default();
let options = eframe::NativeOptions {
// Let's show off that we support transparent windows
// transparent: true,
transparent: true,
drag_and_drop_support: true,
..Default::default()
};