Make context drawer inline

This commit is contained in:
Jeremy Soller 2025-11-06 19:51:00 -07:00
parent 0a3b248c67
commit b48e7b0865
No known key found for this signature in database
GPG key ID: 670FDFB5428E05CA

View file

@ -1307,7 +1307,9 @@ impl Application for App {
}
/// Creates the application, and optionally emits command on initialize.
fn init(core: Core, flags: Self::Flags) -> (Self, Task<Self::Message>) {
fn init(mut core: Core, flags: Self::Flags) -> (Self, Task<Self::Message>) {
core.window.context_is_overlay = false;
// Update font name from config
{
let mut font_system = font_system().write().unwrap();