浏览代码

HackStudio: Fix the labels of project opening menu and dialog

Tibor Nagy 5 年之前
父节点
当前提交
f15e9ee0fc
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      DevTools/HackStudio/main.cpp

+ 2 - 2
DevTools/HackStudio/main.cpp

@@ -396,8 +396,8 @@ int main(int argc, char** argv)
         update_actions();
     });
 
-    auto open_action = GUI::Action::create("Open Project", { Mod_Ctrl | Mod_Shift, Key_O }, Gfx::Bitmap::load_from_file("/res/icons/16x16/open.png"), [&](auto&) {
-        auto open_path = GUI::FilePicker::get_open_filepath();
+    auto open_action = GUI::Action::create("Open project...", { Mod_Ctrl | Mod_Shift, Key_O }, Gfx::Bitmap::load_from_file("/res/icons/16x16/open.png"), [&](auto&) {
+        auto open_path = GUI::FilePicker::get_open_filepath("Open project");
         if (!open_path.has_value())
             return;
         open_project(open_path.value());