diff options
author | Peter Elliott <pelliott@ualberta.ca> | 2020-07-31 16:12:11 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-08-01 08:06:48 +0200 |
commit | 4bf4a071a661b3c67c54d75f44b4949027bf045e (patch) | |
tree | 3513fe23479b9ee1c7a59f3d1708df511f5d9b00 /Applications/DisplaySettings/main.cpp | |
parent | 5ae9eee4a37a473ef768a2fe8d95d84202443cbe (diff) | |
download | serenity-4bf4a071a661b3c67c54d75f44b4949027bf045e.zip |
Applications: Stop setting initial window location
This will let the WindowManager choose the location of the window
Diffstat (limited to 'Applications/DisplaySettings/main.cpp')
-rw-r--r-- | Applications/DisplaySettings/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Applications/DisplaySettings/main.cpp b/Applications/DisplaySettings/main.cpp index aa6a2c34ad..44cdeeb708 100644 --- a/Applications/DisplaySettings/main.cpp +++ b/Applications/DisplaySettings/main.cpp @@ -56,7 +56,6 @@ int main(int argc, char** argv) auto window = GUI::Window::construct(); dbg() << "main window: " << window; window->set_title("Display settings"); - window->move_to(100, 100); window->resize(360, 390); window->set_resizable(false); window->set_main_widget(instance->root_widget()); |