diff options
| author | Jeff Carr <[email protected]> | 2025-10-15 12:20:27 -0500 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-15 12:20:27 -0500 | 
| commit | b6076aacaf4dc0b74254840332640ab0bff7f2be (patch) | |
| tree | 770c40bb85c21714f1025f87409a34bc18ec829d | |
| parent | 08fc59dae81b086e3911ca04043a222c3f03dce8 (diff) | |
have the 'U' stand out in the list
| -rw-r--r-- | tableSmart.go | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/tableSmart.go b/tableSmart.go index 33c5269..293987e 100644 --- a/tableSmart.go +++ b/tableSmart.go @@ -53,7 +53,7 @@ func (m *Machine) makeSmartTable(pb *Packages) *PackagesTable {  	col = t.AddStringFunc("  I", func(p *Package) string {  		if m.WillUpgrade(p) { -			return "U" +			return " U"  		}  		if m.IsInstalled(p.Package) {  			return "  X"  | 
