FileManager: Unbreak build after "select all" changes

This commit is contained in:
Andreas Kling 2020-01-07 11:12:33 +01:00
parent 6192467de9
commit 3f3169c225
Notes: sideshowbarker 2024-07-19 10:17:40 +09:00

View file

@ -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&) {
directory_view->current_view.select_all();
directory_view->current_view().select_all();
});
auto copy_action = GCommonActions::make_copy_action([&](const GAction& action) {