From f103f3af600c7ddc7a5ec565cc7752dc3830e3a8 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 6 Feb 2023 16:26:55 +0100 Subject: [PATCH] TextEditor: "Open Containing Folder" => "Reveal in File Manager" --- Userland/Applications/TextEditor/MainWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/TextEditor/MainWidget.cpp b/Userland/Applications/TextEditor/MainWidget.cpp index c8618c83dc..03fed82379 100644 --- a/Userland/Applications/TextEditor/MainWidget.cpp +++ b/Userland/Applications/TextEditor/MainWidget.cpp @@ -314,7 +314,7 @@ MainWidget::MainWidget() }); auto file_manager_icon = Gfx::Bitmap::load_from_file("/res/icons/16x16/app-file-manager.png"sv).release_value_but_fixme_should_propagate_errors(); - m_open_folder_action = GUI::Action::create("Open Containing Folder", { Mod_Ctrl | Mod_Shift, Key_O }, file_manager_icon, [&](auto&) { + m_open_folder_action = GUI::Action::create("Reveal in File Manager", { Mod_Ctrl | Mod_Shift, Key_O }, file_manager_icon, [&](auto&) { auto lexical_path = LexicalPath(m_path); Desktop::Launcher::open(URL::create_with_file_scheme(lexical_path.dirname(), lexical_path.basename())); });