From 3c11c7b1b18f7801c60aad647a530df78057747a Mon Sep 17 00:00:00 2001 From: Lucas Meurer Date: Tue, 23 Jun 2026 17:17:49 +0200 Subject: [PATCH] Fix eframe inspection for glow (#8254) Removed wrong `cfg` attribute that broke inspection with the glow backend. --- crates/eframe/src/native/glow_integration.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/eframe/src/native/glow_integration.rs b/crates/eframe/src/native/glow_integration.rs index c44a70153..cb53609ee 100644 --- a/crates/eframe/src/native/glow_integration.rs +++ b/crates/eframe/src/native/glow_integration.rs @@ -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 = {