From a4c1909fc23719e22596a9fc0fa4275e570769c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vuka=C5=A1in=20Vojinovi=C4=87?= Date: Wed, 6 Nov 2024 01:27:45 +0100 Subject: [PATCH] fix(content_col): remove spacing Removes spacing between the footer and content, until the `resize_border` is moved. --- src/app/mod.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app/mod.rs b/src/app/mod.rs index 8771a252..fc90c75b 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -787,7 +787,8 @@ impl ApplicationExt for App { widgets }); let content_col = crate::widget::column::with_capacity(2) - .spacing(8) + //TODO: Add back when the `resize_border` is moved to not cover window content + //.spacing(8) .push(content_row) .push_maybe( self.footer()