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

Applications: Stop setting initial window location

This will let the WindowManager choose the location of the window
This commit is contained in:
Peter Elliott 2020-07-31 16:12:11 -06:00 committed by Andreas Kling
parent 5ae9eee4a3
commit 4bf4a071a6
17 changed files with 14 additions and 17 deletions

View file

@ -255,7 +255,6 @@ int main(int argc, char** argv)
terminal.on_title_change = [&](auto& title) {
window->set_title(title);
};
window->move_to(300, 300);
terminal.apply_size_increments_to_window(*window);
window->show();
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-terminal.png"));