summaryrefslogtreecommitdiffstats
path: root/pkg/gui/branches_panel.go
blob: 959085645debd26a1848c026f0dc613ef13a44d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package gui

func (gui *Gui) branchesRenderToMain() error {
	var task updateTask
	branch := gui.State.Contexts.Branches.GetSelected()
	if branch == nil {
		task = NewRenderStringTask(gui.c.Tr.NoBranchesThisRepo)
	} else {
		cmdObj := gui.git.Branch.GetGraphCmdObj(branch.Name)

		task = NewRunPtyTask(cmdObj.GetCmd())
	}

	return gui.refreshMainViews(refreshMainOpts{
		main: &viewUpdateOpts{
			title: "Log",
			task:  task,
		},
	})
}