Skip to content

Commit

Permalink
Change button text for bitcoind selection
Browse files Browse the repository at this point in the history
  • Loading branch information
jp1ac4 committed Aug 10, 2023
1 parent 7ced747 commit b4451e8
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions gui/src/installer/view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -901,12 +901,8 @@ pub fn select_bitcoind_type<'a>(progress: (usize, usize)) -> Element<'a, Message
.spacing(20)
.align_items(Alignment::Center)
.push(
p1_regular("I want to manage my own Bitcoin node")
.style(color::GREY_3),
)
.push(
button::secondary(None, "Select")
.width(Length::Fixed(200.0))
button::primary(None, "I want to manage my own node")
.width(Length::Fixed(300.0))
.on_press(Message::SelectBitcoindType(
message::SelectBitcoindTypeMsg::UseInternal(false),
)),
Expand All @@ -920,10 +916,9 @@ pub fn select_bitcoind_type<'a>(progress: (usize, usize)) -> Element<'a, Message
Column::new()
.spacing(20)
.align_items(Alignment::Center)
.push(p1_regular("Let Liana manage my node").style(color::GREY_3))
.push(
button::secondary(None, "Select")
.width(Length::Fixed(200.0))
button::primary(None, "Let Liana manage my node")
.width(Length::Fixed(300.0))
.on_press(Message::SelectBitcoindType(
message::SelectBitcoindTypeMsg::UseInternal(true),
)),
Expand Down

0 comments on commit b4451e8

Please sign in to comment.