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/KeyboardMapper | |
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/KeyboardMapper')
-rw-r--r-- | Applications/KeyboardMapper/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Applications/KeyboardMapper/main.cpp b/Applications/KeyboardMapper/main.cpp index 67e265725d..65a99beccc 100644 --- a/Applications/KeyboardMapper/main.cpp +++ b/Applications/KeyboardMapper/main.cpp @@ -50,7 +50,6 @@ int main(int argc, char** argv) window->set_icon(app_icon.bitmap_for_size(16)); window->set_main_widget<KeyboardMapperWidget>(); window->resize(775, 315); - window->move_to(50, 50); window->set_resizable(false); window->show(); |