mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 16:18:12 +00:00
FileManager: Add F6 alternate shortcut to "location" action
This mirrors the behaviour in Browser.
This commit is contained in:
parent
28f0193d9b
commit
c23d25d1de
1 changed files with 1 additions and 1 deletions
|
@ -970,7 +970,7 @@ ErrorOr<int> run_in_windowed_mode(String const& initial_location, String const&
|
|||
TRY(view_menu->try_add_separator());
|
||||
TRY(view_menu->try_add_action(action_show_dotfiles));
|
||||
|
||||
auto go_to_location_action = GUI::Action::create("Go to &Location...", { Mod_Ctrl, Key_L }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/go-to.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||
auto go_to_location_action = GUI::Action::create("Go to &Location...", { Mod_Ctrl, Key_L }, Key_F6, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/go-to.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||
toolbar_container.set_visible(true);
|
||||
location_toolbar.set_visible(true);
|
||||
breadcrumb_toolbar.set_visible(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue