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
commit 4bf4a071a6
Notes: sideshowbarker 2024-07-19 04:25:47 +09:00
17 changed files with 14 additions and 17 deletions

View file

@ -121,7 +121,7 @@ int main(int argc, char** argv)
auto bookmarks_bar = Browser::BookmarksBarWidget::construct(Browser::bookmarks_filename, bookmarksbar_enabled);
auto window = GUI::Window::construct();
window->set_rect(100, 100, 640, 480);
window->resize(640, 480);
window->set_icon(Gfx::Bitmap::load_from_file("/res/icons/16x16/app-browser.png"));
window->set_title("Browser");