diff options
author | Nao Pross <naopross@thearcway.org> | 2019-01-11 10:15:45 +0100 |
---|---|---|
committer | Nao Pross <naopross@thearcway.org> | 2019-01-11 10:15:45 +0100 |
commit | 0be2de9895cc3de4f7fc74ecee8e4feee129ec79 (patch) | |
tree | 12c9106561deeafea465a7ef7d608adb47789a05 | |
parent | Add structure to support Scenes (MenuScene, MapScene, ...) (diff) | |
download | Subconscious-rs-0be2de9895cc3de4f7fc74ecee8e4feee129ec79.tar.gz Subconscious-rs-0be2de9895cc3de4f7fc74ecee8e4feee129ec79.zip |
Change titlebar style to allow resizing
-rw-r--r-- | src/graphics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics.rs b/src/graphics.rs index 8c5fd73..e4f8e38 100644 --- a/src/graphics.rs +++ b/src/graphics.rs @@ -60,7 +60,7 @@ impl Graphics { let mut window = RenderWindow::new( default_window_size, "Subconscious", - Style::CLOSE, + Style::DEFAULT, &context_settings ); |