From 0dcb7a234ee71c91d4d469eb7fce43f7fc68c37b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sat, 20 Apr 2019 21:24:02 +0200 Subject: LibGUI+Minesweeper: Add GWindow::set_resizable(). --- Games/Minesweeper/main.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Games') diff --git a/Games/Minesweeper/main.cpp b/Games/Minesweeper/main.cpp index d5c2a3f22f..2c4ae20e3a 100644 --- a/Games/Minesweeper/main.cpp +++ b/Games/Minesweeper/main.cpp @@ -13,6 +13,7 @@ int main(int argc, char** argv) GApplication app(argc, argv); auto* window = new GWindow; + window->set_resizable(false); window->set_title("Minesweeper"); window->set_rect(100, 100, 139, 175); -- cgit v1.2.3