aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--ui/updatepage.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/updatepage.go b/ui/updatepage.go
index 85b8558b..0611ba08 100644
--- a/ui/updatepage.go
+++ b/ui/updatepage.go
@@ -32,9 +32,11 @@ func NewUpdatePage() (*UpdatePage, error) {
instructions, _ := walk.NewTextLabel(up)
instructions.SetText("An update to WireGuard is available. It is highly advisable to update without delay.")
+ instructions.SetMinMaxSize(walk.Size{1, 0}, walk.Size{0, 0})
status, _ := walk.NewTextLabel(up)
status.SetText("Status: Waiting for user")
+ status.SetMinMaxSize(walk.Size{1, 0}, walk.Size{0, 0})
bar, _ := walk.NewProgressBar(up)
bar.SetVisible(false)