From 0d272ea98eff3f8d040e23a481edaf3448be285c Mon Sep 17 00:00:00 2001 From: Javad Date: Thu, 25 Jul 2024 12:08:45 +0330 Subject: [PATCH] fix: width size of listbox and download button --- cmd/gtk/startup_assistant.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/gtk/startup_assistant.go b/cmd/gtk/startup_assistant.go index 05533097d..a4a83620c 100644 --- a/cmd/gtk/startup_assistant.go +++ b/cmd/gtk/startup_assistant.go @@ -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)