gui: increase scrollable width

This commit is contained in:
edouard 2023-05-11 13:39:31 +02:00
parent 916e475395
commit 98c7d54ae0
2 changed files with 15 additions and 6 deletions

View File

@ -565,8 +565,13 @@ pub fn wallet_settings<'a>(
Column::new()
.push(text("Wallet descriptor:").bold())
.push(
scrollable(text(descriptor.to_owned()).small()).horizontal_scroll(
scrollable::Properties::new().width(2).scroller_width(2),
scrollable(
Column::new()
.push(text(descriptor.to_owned()).small())
.push(Space::with_height(Length::Units(5))),
)
.horizontal_scroll(
scrollable::Properties::new().width(5).scroller_width(5),
),
)
.push(

View File

@ -453,7 +453,7 @@ pub fn signer_xpubs(xpubs: &Vec<String>) -> Element<Message> {
Container::new(
scrollable(Container::new(text(xpub).small()).padding(10))
.horizontal_scroll(
Properties::new().width(2).scroller_width(2),
Properties::new().width(5).scroller_width(5),
),
)
.width(Length::Fill),
@ -536,7 +536,7 @@ pub fn hardware_wallet_xpubs<'a>(
Container::new(
scrollable(Container::new(text(xpub).small()).padding(10))
.horizontal_scroll(
Properties::new().width(2).scroller_width(2),
Properties::new().width(5).scroller_width(5),
),
)
.width(Length::Fill),
@ -1161,8 +1161,12 @@ pub fn defined_descriptor_key(
.spacing(10)
.align_items(Alignment::Center)
.push(
scrollable(text(name).bold())
.horizontal_scroll(Properties::new().width(2).scroller_width(2)),
scrollable(
Column::new()
.push(text(name).bold())
.push(Space::with_height(Length::Units(5))),
)
.horizontal_scroll(Properties::new().width(5).scroller_width(5)),
)
.push(image::success_mark_icon().width(Length::Units(50)))
.push(Space::with_width(Length::Units(1))),