Skip to content

Commit 088dc3e

Browse files
committed
Fix clipboard text rendering issue
1 parent 5c87706 commit 088dc3e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/pages/clipboard.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub fn clipboard_view(
2323
)
2424
.id("results"),
2525
)
26-
.height(385)
26+
.height(10000)
2727
.style(move |_| result_row_container_style(&theme_clone_2, false))
2828
.into(),
2929
container(Scrollable::with_direction(
@@ -33,7 +33,7 @@ pub fn clipboard_view(
3333
.map(|x| x.to_app().search_name)
3434
.unwrap_or("".to_string()),
3535
)
36-
.height(385)
36+
.height(Length::Fill)
3737
.width(Length::Fill)
3838
.align_x(Alignment::Start)
3939
.font(theme.font())

0 commit comments

Comments
 (0)