diff options
author | thatlittlegit <personal@thatlittlegit.tk> | 2020-02-14 14:55:18 -0500 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-15 20:46:10 +0100 |
commit | d5617fc855774028492ca5d9668690cebb6fd591 (patch) | |
tree | 9237e5f09dc226c85d03d85ccf4d559a91180780 /Applications/Welcome | |
parent | 7a3bdf3563b7363d89e7694551c92d9a3e42b326 (diff) | |
download | serenity-d5617fc855774028492ca5d9668690cebb6fd591.zip |
Welcome: 'Welcome to Serenity' -> 'Welcome to SerenityOS'
Diffstat (limited to 'Applications/Welcome')
-rw-r--r-- | Applications/Welcome/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Applications/Welcome/main.cpp b/Applications/Welcome/main.cpp index d6f5983e1c..de436c4dd2 100644 --- a/Applications/Welcome/main.cpp +++ b/Applications/Welcome/main.cpp @@ -155,7 +155,7 @@ int main(int argc, char** argv) auto pages = _pages.value(); auto window = GUI::Window::construct(); - window->set_title("Welcome to Serenity"); + window->set_title("Welcome"); Gfx::Rect window_rect { 0, 0, 640, 360 }; window_rect.center_within(GUI::Desktop::the().rect()); window->set_resizable(true); @@ -175,7 +175,7 @@ int main(int argc, char** argv) auto header = GUI::Label::construct(background.ptr()); header->set_font(Gfx::Font::load_from_file("/res/fonts/PebbletonBold11.font")); - header->set_text("Welcome to Serenity"); + header->set_text("Welcome to SerenityOS!"); header->set_text_alignment(Gfx::TextAlignment::CenterLeft); header->set_size_policy(GUI::SizePolicy::Fill, GUI::SizePolicy::Fixed); header->set_preferred_size(0, 30); |