From 34538845ba899a6892c6bbc10d294f209b78fdd7 Mon Sep 17 00:00:00 2001 From: Jeff Zhao Date: Mon, 21 Jun 2021 19:44:17 -0400 Subject: fix file sizes not appearing when filename too long (#78) * fix file sizes not appearing when filename too long * refactor previewing code - event.rs is moved out of utils as its an integral part of the codebase - load_child.rs has been replaced with preview module - moved previewing logic inside run.rs instead of spreading it across multiple commands * revert tui_dirlist_detailed to use MIN_LEFT_LABEL_WIDTH - add previewing loading trigger to mouse input as well * fix: right label disappears (#79) Co-authored-by: DLFW --- src/commands/delete_files.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/commands/delete_files.rs') diff --git a/src/commands/delete_files.rs b/src/commands/delete_files.rs index ba84b33..4339a39 100644 --- a/src/commands/delete_files.rs +++ b/src/commands/delete_files.rs @@ -7,7 +7,6 @@ use crate::context::AppContext; use crate::history::DirectoryHistory; use crate::ui::widgets::TuiPrompt; use crate::ui::TuiBackend; -use crate::util::load_child::LoadChild; use super::reload; @@ -116,6 +115,5 @@ pub fn delete_selected_files( for tab in context.tab_context_mut().iter_mut() { tab.history_mut().reload(&curr_path, &options)?; } - LoadChild::load_child(context)?; Ok(()) } -- cgit v1.2.3