summaryrefslogtreecommitdiffstats
path: root/pkg/gui/commit_files_panel.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/commit_files_panel.go')
-rw-r--r--pkg/gui/commit_files_panel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/commit_files_panel.go b/pkg/gui/commit_files_panel.go
index 0ada68090..21afc54f4 100644
--- a/pkg/gui/commit_files_panel.go
+++ b/pkg/gui/commit_files_panel.go
@@ -12,7 +12,7 @@ func (gui *Gui) onCommitFileFocus() error {
}
func (gui *Gui) commitFilesRenderToMain() error {
- node := gui.State.Contexts.CommitFiles.GetSelectedFileNode()
+ node := gui.State.Contexts.CommitFiles.GetSelected()
if node == nil {
return nil
}
@@ -78,7 +78,7 @@ func (gui *Gui) refreshCommitFilesView() error {
}
func (gui *Gui) getSelectedCommitFileName() string {
- node := gui.State.Contexts.CommitFiles.GetSelectedFileNode()
+ node := gui.State.Contexts.CommitFiles.GetSelected()
if node == nil {
return ""
}