1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 15:55:08 +00:00

DisplayProperties: Start at top left position for full view at low resoluations.

This commit is contained in:
Hüseyin ASLITÜRK 2019-12-15 19:40:17 +03:00 committed by Andreas Kling
parent 5292f6e78f
commit 22b190e4be

View file

@ -12,6 +12,7 @@ int main(int argc, char** argv)
auto window = GWindow::construct();
window->set_title("Display Properties");
window->move_to(100,100);
window->resize(400, 448);
window->set_resizable(false);
window->set_main_widget(instance.root_widget());