From dcd53beea89ba96f20d78c9c74c5d6cc8adae296 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 14 Apr 2024 12:11:30 -0700 Subject: [PATCH] remove minimum window size This is preventing me from doing a single column layout on desktop Cc: kernelkind Signed-off-by: William Casarin --- src/app_creation.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/app_creation.rs b/src/app_creation.rs index 1b3ddf4..0106438 100644 --- a/src/app_creation.rs +++ b/src/app_creation.rs @@ -11,10 +11,6 @@ pub fn generate_native_options() -> NativeOptions { .with_fullsize_content_view(true) .with_titlebar_shown(false) .with_title_shown(false) - .with_min_inner_size([ - 660.0 * (1.0 + UI_SCALE_FACTOR), - 720.0 * (1.0 + UI_SCALE_FACTOR), - ]) }) }