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

FileManager: Add "go home" action to the "Go" menu

This commit is contained in:
Andreas Kling 2019-08-26 21:20:39 +02:00
parent 1077c15917
commit b0b94560c3

View file

@ -169,6 +169,7 @@ int main(int argc, char** argv)
go_menu->add_action(go_back_action);
go_menu->add_action(go_forward_action);
go_menu->add_action(open_parent_directory_action);
go_menu->add_action(go_home_action);
menubar->add_menu(move(go_menu));
auto help_menu = make<GMenu>("Help");