From 707e8ed72d248bcc80a19c9220c1cc6de4dba28d Mon Sep 17 00:00:00 2001 From: Ricky Kresslein Date: Fri, 8 Apr 2022 13:01:33 +0300 Subject: Minimum height changes for task list or empty views (Issue #16) --- src/ui/window.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/ui/window.rs') diff --git a/src/ui/window.rs b/src/ui/window.rs index c955451..a9b43bd 100755 --- a/src/ui/window.rs +++ b/src/ui/window.rs @@ -153,6 +153,17 @@ impl FurtheranceWindow { fn setup_widgets(&self) { let imp = imp::FurtheranceWindow::from_instance(self); + // Set initial minimum height + let is_saved_task: bool = match database::check_for_tasks() { + Ok(_) => true, + Err(_) => false, + }; + if is_saved_task { + self.set_height_request(300); + } else { + self.set_height_request(390); + } + // Development mode if config::PROFILE == "development" { self.add_css_class("devel"); -- cgit 1.4.1