summaryrefslogtreecommitdiff
path: root/draw.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-19 12:36:52 -0600
committerJeff Carr <[email protected]>2024-01-19 12:36:52 -0600
commite7257a919d75f63a27ef291f1e59a802a8a285cd (patch)
treed9dac62fb4221e89601a1414f1b932174e87a14d /draw.go
parent7a283a1da6f91c560afda240d36236c9f515d020 (diff)
lots of things broken
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'draw.go')
-rw-r--r--draw.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/draw.go b/draw.go
index 183bb7b..22a3275 100644
--- a/draw.go
+++ b/draw.go
@@ -348,7 +348,7 @@ func (rs *RepoStatus) setGitCommands() {
tmp = append(tmp, s)
}
- rs.versionCmdOutput.SetText(strings.Join(tmp, "\n"))
+ rs.versionCmdOutput.SetValue(strings.Join(tmp, "\n"))
}
func (rs *RepoStatus) setMergeDevelCommands() {
@@ -375,7 +375,7 @@ func (rs *RepoStatus) setMergeDevelCommands() {
tmp = append(tmp, s)
}
- rs.versionCmdOutput.SetText(strings.Join(tmp, "\n"))
+ rs.versionCmdOutput.SetValue(strings.Join(tmp, "\n"))
}
func (rs *RepoStatus) setMergeUserCommands() {
@@ -402,5 +402,5 @@ func (rs *RepoStatus) setMergeUserCommands() {
tmp = append(tmp, s)
}
- rs.versionCmdOutput.SetText(strings.Join(tmp, "\n"))
+ rs.versionCmdOutput.SetValue(strings.Join(tmp, "\n"))
}