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
commit 14223a9c20
Notes: sideshowbarker 2024-07-18 01:51:52 +09:00

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);