Skip to content

Commit

Permalink
fix(gtk): width size of listbox and download button (#1434)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ja7ad authored Aug 9, 2024
1 parent 98b228e commit dcdb8bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/gtk/startup_assistant.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@ func startupAssistant(workingDir string, chainType genesis.ChainType) bool {
fatalErrorCheck(err)
setMargin(listBox, 5, 5, 1, 1)
listBox.SetHAlign(gtk.ALIGN_CENTER)
listBox.SetSizeRequest(600, -1)
listBox.SetSizeRequest(700, -1)

ssDLBtn, err := gtk.ButtonNewWithLabel("⏬ Download")
fatalErrorCheck(err)
setMargin(ssDLBtn, 10, 5, 1, 1)
ssDLBtn.SetHAlign(gtk.ALIGN_CENTER)
ssDLBtn.SetSizeRequest(600, -1)
ssDLBtn.SetSizeRequest(700, -1)

ssPBLabel, err := gtk.LabelNew("")
fatalErrorCheck(err)
Expand Down

0 comments on commit dcdb8bf

Please sign in to comment.