1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 01:57:45 +00:00

Run: Improve UI consistency

This commit is contained in:
FrHun 2021-07-27 21:03:06 +02:00 committed by Andreas Kling
parent 033c14e574
commit 411622148a
3 changed files with 12 additions and 8 deletions

View file

@ -20,7 +20,7 @@ int main(int argc, char** argv)
auto app = GUI::Application::construct(argc, argv);
auto window = RunWindow::construct();
window->move_to(12, GUI::Desktop::the().rect().bottom() - GUI::Desktop::the().taskbar_height() - 12 - window->height());
window->move_to(16, GUI::Desktop::the().rect().bottom() - GUI::Desktop::the().taskbar_height() - 16 - window->height());
window->show();
return app->exec();