From b48e7b0865eb379cfeea2dbea7483c3dbf5c232c Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Thu, 6 Nov 2025 19:51:00 -0700 Subject: [PATCH] Make context drawer inline --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index c0a62ee..2de5809 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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) { + fn init(mut core: Core, flags: Self::Flags) -> (Self, Task) { + core.window.context_is_overlay = false; + // Update font name from config { let mut font_system = font_system().write().unwrap();