1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 08:28:11 +00:00

Taskbar: Integrate clock widget into taskbar window

Instead of running the clock widget as a separate menu applet,
let's just draw a clock here in the taskbar window.
This commit is contained in:
Andreas Kling 2021-03-25 22:11:12 +01:00
parent fc84076f18
commit 0668b5beef
6 changed files with 351 additions and 12 deletions

View file

@ -51,8 +51,8 @@ int main(int argc, char** argv)
return 1;
}
TaskbarWindow window;
window.show();
auto window = TaskbarWindow::construct();
window->show();
return app->exec();
}