1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:37:34 +00:00

Demos: Change MouseDemo's window title to "Mouse demo"

The previous title ("Mouse button demo") didn't fit in the window's
titlebar, which looked pretty bad.
This commit is contained in:
Idan Horowitz 2021-10-26 12:10:58 +03:00 committed by Andreas Kling
parent e0f0b6379a
commit 14223a9c20

View file

@ -170,7 +170,7 @@ int main(int argc, char** argv)
}
auto window = GUI::Window::construct();
window->set_title("Mouse button demo");
window->set_title("Mouse demo");
window->set_icon(app_icon.bitmap_for_size(16));
window->resize(160, 155);