From f13cf535d66501305256b485190086654053c19d Mon Sep 17 00:00:00 2001 From: ByteAtATime Date: Sun, 30 Nov 2025 18:42:49 -0800 Subject: [PATCH] fix: make content scrollable full width --- src/screens/clipboard_history.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/screens/clipboard_history.rs b/src/screens/clipboard_history.rs index 49a64cd..5fa3c97 100644 --- a/src/screens/clipboard_history.rs +++ b/src/screens/clipboard_history.rs @@ -392,9 +392,11 @@ impl ClipboardHistoryScreen { .center_x(Length::Fill) .center_y(Length::Fill) } else { - container(scrollable(text(t).size(14).color(text_color))) - .height(Length::Fill) - .width(Length::Fill) + container( + scrollable(text(t).size(14).color(text_color)).width(Length::Fill), + ) + .height(Length::Fill) + .width(Length::Fill) } } ClipboardContent::Image(img) => {