Browse Source

FileManager: Unbreak build after "select all" changes

Andreas Kling 5 years ago
parent
commit
3f3169c225
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Applications/FileManager/main.cpp

+ 1 - 1
Applications/FileManager/main.cpp

@@ -192,7 +192,7 @@ int main(int argc, char** argv)
     };
     };
 
 
     auto select_all_action = GAction::create("Select all", { Mod_Ctrl, KeyCode::Key_A }, [&](const GAction&) {
     auto select_all_action = GAction::create("Select all", { Mod_Ctrl, KeyCode::Key_A }, [&](const GAction&) {
-        directory_view->current_view.select_all();
+        directory_view->current_view().select_all();
     });
     });
 
 
     auto copy_action = GCommonActions::make_copy_action([&](const GAction& action) {
     auto copy_action = GCommonActions::make_copy_action([&](const GAction& action) {