Linux: Fix some crashes from new functions having unimplemented!() (#7567)

Release Notes:

- N/A
This commit is contained in:
h3mosphere 2024-02-09 02:53:39 +11:00 committed by GitHub
parent 4048dbfafd
commit 006e7a77d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -346,7 +346,7 @@ impl Platform for LinuxPlatform {
//todo!(linux)
fn should_auto_hide_scrollbars(&self) -> bool {
unimplemented!()
false
}
//todo!(linux)
@ -370,7 +370,7 @@ impl Platform for LinuxPlatform {
}
fn window_appearance(&self) -> crate::WindowAppearance {
unimplemented!()
crate::WindowAppearance::Light
}
}

View File

@ -294,7 +294,7 @@ impl PlatformWindow for LinuxWindow {
//todo!(linux)
fn appearance(&self) -> WindowAppearance {
unimplemented!()
WindowAppearance::Light
}
fn display(&self) -> Rc<dyn PlatformDisplay> {