From 1c2246e709d8669faeb035df6a2470861239d48b Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Tue, 19 Nov 2024 04:37:20 -0600 Subject: add Conflicts: --- controlBox.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'controlBox.go') 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() -- cgit v1.2.3