diff options
Diffstat (limited to 'modifyBox.go')
| -rw-r--r-- | modifyBox.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modifyBox.go b/modifyBox.go index 2a294b0..8dfd289 100644 --- a/modifyBox.go +++ b/modifyBox.go @@ -10,12 +10,12 @@ func (rs *RepoStatus) drawGitCommands(box *gui.Node) { rs.gitCommandsGroup = box.NewGroup("modify") newgrid := rs.gitCommandsGroup.NewGrid("gridnuts", 0, 0) - newgrid.NewButton("update", func() { - rs.Update() + newgrid.NewButton("UpdateNew()", func() { + rs.UpdateNew() }) - newgrid.NewButton("UpdateCurrent()", func() { - rs.Update() + newgrid.NewButton("updateOld()", func() { + rs.UpdateOld() }) newgrid.NewButton("CheckDirty()", func() { |
