1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:28:12 +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

@ -25,7 +25,7 @@ int main(int argc, char** argv)
edited_font = Font::default_font().clone();
auto* window = new GWindow;
window->set_title("FontEditor");
window->set_title("Font Editor");
window->set_rect({ 50, 50, 390, 325 });
auto* font_editor = new FontEditorWidget(path, move(edited_font));
window->set_main_widget(font_editor);