diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 21:24:02 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-04-20 21:24:02 +0200 |
commit | 0dcb7a234ee71c91d4d469eb7fce43f7fc68c37b (patch) | |
tree | 3c33292a8bfdc8128a6ee005bce57131bcc79d2d /Games | |
parent | a0633c298bddf7e7d6555a5d5c9c1dc62362c889 (diff) | |
download | serenity-0dcb7a234ee71c91d4d469eb7fce43f7fc68c37b.zip |
LibGUI+Minesweeper: Add GWindow::set_resizable().
Diffstat (limited to 'Games')
-rw-r--r-- | Games/Minesweeper/main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |