From 711a9e57532a57a02e55a31a1c79662d8e6b9843 Mon Sep 17 00:00:00 2001 From: Michael Sloan Date: Thu, 5 Jun 2025 18:14:20 -0600 Subject: [PATCH] x11: Remove logs for mac-os specific `set_edited` and `show_character_palette` (#32203) Release Notes: - N/A --- crates/gpui/src/platform/linux/x11/window.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/crates/gpui/src/platform/linux/x11/window.rs b/crates/gpui/src/platform/linux/x11/window.rs index 7a9949c6e4..4ad36460e3 100644 --- a/crates/gpui/src/platform/linux/x11/window.rs +++ b/crates/gpui/src/platform/linux/x11/window.rs @@ -1322,10 +1322,6 @@ impl PlatformWindow for X11Window { Ok(()) } - fn set_edited(&mut self, _edited: bool) { - log::info!("ignoring macOS specific set_edited"); - } - fn set_background_appearance(&self, background_appearance: WindowBackgroundAppearance) { let mut state = self.0.state.borrow_mut(); state.background_appearance = background_appearance; @@ -1333,10 +1329,6 @@ impl PlatformWindow for X11Window { state.renderer.update_transparency(transparent); } - fn show_character_palette(&self) { - log::info!("ignoring macOS specific show_character_palette"); - } - fn minimize(&self) { let state = self.0.state.borrow(); const WINDOW_ICONIC_STATE: u32 = 3;