Run: Put the window in the bottom left of the desktop

This makes a lot more sense now that it's spawned by the start button.
This commit is contained in:
Andreas Kling 2021-04-17 23:27:00 +02:00
parent d6c6880674
commit f07efa1640
Notes: sideshowbarker 2024-07-18 19:29:23 +09:00

View File

@ -27,6 +27,7 @@
#include "RunWindow.h"
#include <AK/StringBuilder.h>
#include <LibGUI/Application.h>
#include <LibGUI/Desktop.h>
#include <unistd.h>
int main(int argc, char** argv)
@ -45,6 +46,7 @@ int main(int argc, char** argv)
auto window = RunWindow::construct();
window->move_to(12, GUI::Desktop::the().rect().bottom() - GUI::Desktop::the().taskbar_height() - 12 - window->height());
window->show();
return app->exec();