summaryrefslogtreecommitdiffstats
path: root/pkg/gui/branches_panel.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/branches_panel.go')
-rw-r--r--pkg/gui/branches_panel.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 1365980be..c18f97253 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -28,10 +28,6 @@ func (gui *Gui) handleBranchSelect() error {
gui.State.SplitMainPanel = false
- if _, err := gui.g.SetCurrentView("branches"); err != nil {
- return err
- }
-
gui.getMainView().Title = "Log"
// This really shouldn't happen: there should always be a master branch
@@ -39,7 +35,6 @@ func (gui *Gui) handleBranchSelect() error {
return gui.newStringTask("main", gui.Tr.SLocalize("NoBranchesThisRepo"))
}
branch := gui.getSelectedBranch()
- gui.getBranchesView().FocusPoint(0, gui.State.Panels.Branches.SelectedLine)
if gui.inDiffMode() {
return gui.renderDiff()
@@ -510,22 +505,6 @@ func (gui *Gui) handleCreateResetToBranchMenu(g *gocui.Gui, v *gocui.View) error
return gui.createResetMenu(branch.Name)
}
-func (gui *Gui) onBranchesPanelSearchSelect(selectedLine int) error {
- branchesView := gui.getBranchesView()
- switch branchesView.Context {
- case "local-branches":
- gui.State.Panels.Branches.SelectedLine = selectedLine
- return gui.handleBranchSelect()
- case "remotes":
- gui.State.Panels.Remotes.SelectedLine = selectedLine
- return gui.handleRemoteSelect()
- case "remote-branches":
- gui.State.Panels.RemoteBranches.SelectedLine = selectedLine
- return gui.handleRemoteBranchSelect()
- }
- return nil
-}
-
func (gui *Gui) handleRenameBranch(g *gocui.Gui, v *gocui.View) error {
branch := gui.getSelectedBranch()
if branch == nil {