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

Minesweeper: Turn the field into a GFrame for that containery look.

This commit is contained in:
Andreas Kling 2019-04-13 14:22:25 +02:00
parent 3f37665492
commit 49b63efddb
3 changed files with 8 additions and 5 deletions

View file

@ -10,7 +10,7 @@ int main(int argc, char** argv)
auto* window = new GWindow;
window->set_title("Minesweeper");
window->set_rect(100, 100, 135, 171);
window->set_rect(100, 100, 139, 175);
auto* widget = new GWidget;
window->set_main_widget(widget);