diff options
| author | Jeff Carr <[email protected]> | 2024-11-19 04:37:20 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-19 04:37:20 -0600 |
| commit | 1c2246e709d8669faeb035df6a2470861239d48b (patch) | |
| tree | 23c69ead9174843cc337973491fb9648443527df /controlBox.go | |
| parent | 891a4cada95f786bae78851e6d28bf2bfc2aafcb (diff) | |
add Conflicts:
Diffstat (limited to 'controlBox.go')
| -rw-r--r-- | controlBox.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/controlBox.go b/controlBox.go index 1a4416e..ba8d377 100644 --- a/controlBox.go +++ b/controlBox.go @@ -19,6 +19,8 @@ type controlBox struct { Depends *gadgets.OneLiner BuildDepends *gadgets.OneLiner Recommends *gadgets.OneLiner + Conflicts *gadgets.BasicEntry + Test gui.Widget Description *gadgets.OneLiner // repostatus things @@ -79,6 +81,9 @@ func newControl(parent *gui.Node) *controlBox { c.Recommends = gadgets.NewOneLiner(c.grid, "Recommends") c.grid.NextRow() + c.Conflicts = gadgets.NewBasicEntry(c.grid, "Conflicts") + c.grid.NextRow() + c.Description = gadgets.NewOneLiner(c.grid, "Description") c.grid.NextRow() |
