1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 23:28:12 +00:00

UserName.MenuApplet: Add window title.

This commit is contained in:
= 2020-02-09 15:14:32 +03:00 committed by Andreas Kling
parent 3713d31750
commit fcee5075e9

View file

@ -89,6 +89,7 @@ int main(int argc, char** argv)
GUI::Application app(argc, argv);
auto window = GUI::Window::construct();
window->set_title("UserName");
window->set_window_type(GUI::WindowType::MenuApplet);
auto widget = UserNameWidget::construct();