diff options
| author | Jeff Carr <[email protected]> | 2024-01-10 00:19:01 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-10 00:19:01 -0600 |
| commit | 998afefb3c854c6c667be5e65753bc8b5fd6c23b (patch) | |
| tree | 8717d6e35fcdb7f95f607c57154f86ef63ee09e2 | |
| parent | e0fba129e01e138ecf106733012ed4e24f36a904 (diff) | |
send int to BasicCombobox
Signed-off-by: Jeff Carr <[email protected]>
| -rw-r--r-- | draw.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -117,11 +117,11 @@ func (rs *RepoStatus) setCombobox() { } func addCombobox(cb *gadgets.BasicCombobox, i int) { - s := strconv.Itoa(i) - cb.Add(s) + // s := strconv.Itoa(i) + cb.Add(i) } func setCombobox(cb *gadgets.BasicCombobox, i int) { - s := strconv.Itoa(i) - cb.Sdd(s) + // s := strconv.Itoa(i) + cb.Set(i) } |
