diff --git a/crates/eframe/src/native/epi_integration.rs b/crates/eframe/src/native/epi_integration.rs index 29146a7af2e..45be16022a0 100644 --- a/crates/eframe/src/native/epi_integration.rs +++ b/crates/eframe/src/native/epi_integration.rs @@ -139,7 +139,7 @@ pub struct EpiIntegration { is_first_frame: bool, pub frame_start: Instant, pub egui_ctx: egui::Context, - pending_full_output: egui::FullOutput, + // pending_full_output: egui::FullOutput, /// When set, it is time to close the native window. close: bool, @@ -201,7 +201,7 @@ impl EpiIntegration { frame, last_auto_save: Instant::now(), egui_ctx, - pending_full_output: Default::default(), + // pending_full_output: Default::default(), close: false, can_drag_window: false, follow_system_theme: native_options.follow_system_theme, @@ -313,8 +313,9 @@ impl EpiIntegration { } }); - self.pending_full_output.append(full_output); - std::mem::take(&mut self.pending_full_output) + // self.pending_full_output.append(full_output); + // std::mem::take(&mut self.pending_full_output) + full_output } pub fn report_frame_time(&mut self, seconds: f32) {