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

func (gui *Gui) stashRenderToMain() error {
	var task updateTask
	stashEntry := gui.State.Contexts.Stash.GetSelected()
	if stashEntry == nil {
		task = NewRenderStringTask(gui.c.Tr.NoStashEntries)
	} else {
		task = NewRunPtyTask(gui.git.Stash.ShowStashEntryCmdObj(stashEntry.Index).GetCmd())
	}

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