summaryrefslogtreecommitdiffstats
path: root/src/file_browser.rs
diff options
context:
space:
mode:
authorrabite <rabite@posteo.de>2019-08-02 15:51:47 +0200
committerrabite <rabite@posteo.de>2019-08-02 15:51:47 +0200
commitd42f7d328c53e010cf28153a25168368b8b0376c (patch)
tree806d338bcd6f3cfdba07a93a31bf6754e09d00c0 /src/file_browser.rs
parentefde265f3a3db049eefe9db08174ba8f7665f717 (diff)
config updater (auto and manual)
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_();