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.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/file_browser.rs b/src/file_browser.rs
index 73e8e1f..1a57c8a 100644
--- a/src/file_browser.rs
+++ b/src/file_browser.rs
@@ -87,14 +87,6 @@ pub struct FileBrowser {
}
impl Tabbable for TabView<FileBrowser> {
- fn on_new(&mut self) -> HResult<()> {
- let core = self.core.clone();
- std::thread::spawn(move || {
- crate::config_installer::ensure_config(core).log();
- });
- Ok(())
- }
-
fn new_tab(&mut self) -> HResult<()> {
let cur_tab = self.active_tab_();