From d33b92e9b79b0a518e5237a1b0d796c02deefbe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kav=C3=ADk?= Date: Sat, 14 Sep 2024 19:50:43 +0200 Subject: [PATCH] command_panel layout --- frontend/src/command_panel.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/command_panel.rs b/frontend/src/command_panel.rs index 5e61df7..863f4ed 100644 --- a/frontend/src/command_panel.rs +++ b/frontend/src/command_panel.rs @@ -13,8 +13,8 @@ impl CommandPanel { Row::new() .s(Align::new().top()) .s(Gap::both(30)) - .s(Scrollbars::both()) .s(Width::fill()) + .s(Padding::new().x(20).bottom(20)) .item(self.command_editor_panel(command_result.clone())) .item(self.command_result_panel(command_result.read_only())) }