From df17901f47cc7ffc6cb72ad04cbc1d8a1bb83c30 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 16 Nov 2024 11:00:46 -0600 Subject: fix arch 'all' example --- controlBox.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'controlBox.go') diff --git a/controlBox.go b/controlBox.go index e16b131..5f0b118 100644 --- a/controlBox.go +++ b/controlBox.go @@ -48,12 +48,12 @@ func newControl(parent *gui.Node) *controlBox { c.grid.NextRow() c.Architecture = gadgets.NewBasicDropdown(c.grid, "Architecture") - c.Architecture.AddText("riscv") + c.Architecture.AddText("all") + c.Architecture.AddText("riscv64") + c.Architecture.AddText("ppc64") c.Architecture.AddText("amd64") - c.Architecture.AddText("arm") - c.Architecture.AddText("noarch") - c.Architecture.AddText("src") - c.Architecture.SetText("amd64") + c.Architecture.AddText("arm64") + c.Architecture.SetText("riscv64") c.grid.NextRow() c.InstallPath = gadgets.NewBasicCombobox(c.grid, "Install Path") -- cgit v1.2.3