1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:38:10 +00:00

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

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) {