1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix eframe inspection for glow (#8254)

Removed wrong `cfg` attribute that broke inspection with the glow
backend.
This commit is contained in:
Lucas Meurer
2026-06-23 17:17:49 +02:00
committed by GitHub
parent de04af8fb7
commit 3c11c7b1b1

View File

@@ -299,7 +299,6 @@ impl<'app> GlowWinitApp<'app> {
let app_creator = std::mem::take(&mut self.app_creator)
.expect("Single-use AppCreator has unexpectedly already been taken");
#[cfg(all(not(feature = "inspection"), not(target_arch = "wasm32")))]
crate::maybe_attach_inspection_plugin(&integration.egui_ctx, Some(self.app_name.clone()));
let app: Box<dyn 'app + App> = {