diff options
Diffstat (limited to 'controlBox.go')
| -rw-r--r-- | controlBox.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/controlBox.go b/controlBox.go index 2f9f73f..ce86ad9 100644 --- a/controlBox.go +++ b/controlBox.go @@ -15,6 +15,7 @@ type controlBox struct { Version *gadgets.OneLiner Maintainer *gadgets.OneLiner Packager *gadgets.BasicEntry + GoPath *gadgets.BasicEntry URL *gadgets.BasicEntry Architecture *gadgets.BasicDropdown InstallPath *gadgets.BasicCombobox @@ -77,6 +78,9 @@ func newControl(parent *gui.Node) *controlBox { c.Packager = gadgets.NewBasicEntry(c.grid, "Packager") c.grid.NextRow() + c.GoPath = gadgets.NewBasicEntry(c.grid, "GoPath") + c.grid.NextRow() + c.URL = gadgets.NewBasicEntry(c.grid, "URL") c.grid.NextRow() |
