diff options
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() |
