summaryrefslogtreecommitdiffstats
path: root/src/browser/browser_state.rs
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-08-06 21:08:51 +0200
committerCanop <cano.petrole@gmail.com>2020-08-06 21:08:51 +0200
commit21a6a182e9d7c6db2a67cbb07f952907f181010d (patch)
treeff7bcdd8a9a6d25cb4de63aa79b9283a63ec487b /src/browser/browser_state.rs
parentb5ef92d0f52c983e7f25a82a8cdbed12b714baa0 (diff)
:preview_image, :preview_binary, and :preview_text
Diffstat (limited to 'src/browser/browser_state.rs')
-rw-r--r--src/browser/browser_state.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/browser/browser_state.rs b/src/browser/browser_state.rs
index 802f039..1a937d8 100644
--- a/src/browser/browser_state.rs
+++ b/src/browser/browser_state.rs
@@ -396,7 +396,7 @@ impl AppState for BrowserState {
}
} else {
// we ask the app to focus the panel to the left
- AppStateCmdResult::Propagate(Internal::panel_left)
+ AppStateCmdResult::HandleInApp(Internal::panel_left)
}
}
Internal::panel_right => {
@@ -417,7 +417,7 @@ impl AppState for BrowserState {
)
} else {
// we ask the app to focus the panel to the left
- AppStateCmdResult::Propagate(Internal::panel_right)
+ AppStateCmdResult::HandleInApp(Internal::panel_right)
}
}
Internal::parent => self.go_to_parent(screen, con, bang),