summaryrefslogtreecommitdiffstats
path: root/src/commands/show_hidden.rs
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2019-04-02 21:12:22 -0400
committerJiayi Zhao <jeff.no.zhao@gmail.com>2019-04-02 21:12:22 -0400
commit37fa8efbd8691d89fcd22727e3720621fff3680c (patch)
tree8723b96b26f0d30ffa66f8408d5ca2cd93e4a858 /src/commands/show_hidden.rs
parent554f06d72aeb639548314336b2318e14f8ffcc7e (diff)
refactor sorting structs
- filtering hidden files is de-coupled from creating direntries
Diffstat (limited to 'src/commands/show_hidden.rs')
-rw-r--r--src/commands/show_hidden.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/show_hidden.rs b/src/commands/show_hidden.rs
index 12f08c5..be41264 100644
--- a/src/commands/show_hidden.rs
+++ b/src/commands/show_hidden.rs
@@ -14,12 +14,12 @@ impl ToggleHiddenFiles {
"toggle_hidden"
}
pub fn toggle_hidden(context: &mut JoshutoContext) {
- let opposite = !context.config_t.sort_type.show_hidden();
- context.config_t.sort_type.set_show_hidden(opposite);
+ let opposite = !context.config_t.sort_option.show_hidden;
+ context.config_t.sort_option.show_hidden = opposite;
for tab in &mut context.tabs {
tab.history.depecrate_all_entries();
- tab.reload_contents(&context.config_t.sort_type);
+ tab.reload_contents(&context.config_t.sort_option);
}
}
}
@@ -36,7 +36,7 @@ impl JoshutoRunnable for ToggleHiddenFiles {
fn execute(&self, context: &mut JoshutoContext, view: &JoshutoView) {
Self::toggle_hidden(context);
let curr_tab = &mut context.tabs[context.curr_tab_index];
- curr_tab.reload_contents(&context.config_t.sort_type);
+ curr_tab.reload_contents(&context.config_t.sort_option);
curr_tab.refresh(
view,
&context.config_t,