x11: Remove logs for mac-os specific set_edited and show_character_palette (#32203)

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2025-06-05 18:14:20 -06:00 committed by GitHub
parent 6de5d29bff
commit 711a9e5753
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;