diff options
Diffstat (limited to 'controlBox.go')
| -rw-r--r-- | controlBox.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/controlBox.go b/controlBox.go index 846c5dc..4d3cec4 100644 --- a/controlBox.go +++ b/controlBox.go @@ -11,6 +11,7 @@ type controlFile struct { grid *gui.Node // the grid Package *gadgets.OneLiner + Source *gadgets.OneLiner Maintainer *gadgets.OneLiner Architecture *gadgets.BasicDropdown InstallPath *gadgets.BasicCombobox @@ -29,6 +30,10 @@ func newControl(parent *gui.Node) *controlFile { c.Package = gadgets.NewOneLiner(c.grid, "Package") c.grid.NextRow() + + c.Source = gadgets.NewOneLiner(c.grid, "Source") + c.grid.NextRow() + c.Architecture = gadgets.NewBasicDropdown(c.grid, "Architecture") c.Architecture.AddText("riscv") c.Architecture.AddText("amd64") @@ -62,3 +67,6 @@ func newControl(parent *gui.Node) *controlFile { return c } + +func scanConfigFile() { +} |
