1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 22:27:42 +00:00

Applications: Let's put spaces in app names

"FileManager" => "File Manager"
"FontEditor" => "Font Editor"
"ProcessManager" => "Process Manager"
"TextEditor" => "Text Editor"
This commit is contained in:
Andreas Kling 2019-05-27 13:52:28 +02:00
parent 12120167a9
commit b311257098
4 changed files with 8 additions and 8 deletions

View file

@ -101,7 +101,7 @@ int main(int argc, char** argv)
toolbar->add_action(continue_action.copy_ref());
auto menubar = make<GMenuBar>();
auto app_menu = make<GMenu>("ProcessManager");
auto app_menu = make<GMenu>("Process Manager");
app_menu->add_action(GAction::create("Quit", { Mod_Alt, Key_F4 }, [] (const GAction&) {
GApplication::the().quit(0);
return;
@ -141,7 +141,7 @@ int main(int argc, char** argv)
app.set_menubar(move(menubar));
auto* window = new GWindow;
window->set_title("ProcessManager");
window->set_title("Process Manager");
window->set_rect(20, 200, 680, 400);
window->set_main_widget(keeper);
window->set_should_exit_event_loop_on_close(true);