summaryrefslogtreecommitdiffstats
path: root/src/file_browser.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file_browser.rs')
-rw-r--r--src/file_browser.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index 60576b7..241af1f 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -89,6 +89,10 @@ impl Tabbable for TabView<FileBrowser> {
Ok(())
}
+ fn goto_tab(&mut self, index: usize) -> HResult<()> {
+ self.goto_tab_(index)
+ }
+
fn get_tab_names(&self) -> Vec<Option<String>> {
self.widgets.iter().map(|filebrowser| {
let path = filebrowser.cwd.path();
@@ -106,7 +110,7 @@ impl Tabbable for TabView<FileBrowser> {
self.active_tab_mut_()
}
- fn on_next_tab(&mut self) -> HResult<()> {
+ fn on_tab_switch(&mut self) -> HResult<()> {
self.active_tab_mut().refresh()
}