From 391c9ecba53b8f2914b70a903c6f714e5db8e925 Mon Sep 17 00:00:00 2001 From: Joshua Barretto Date: Sun, 14 May 2023 22:11:37 +0100 Subject: [PATCH] Default to fullscreen --- voxygen/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxygen/src/window.rs b/voxygen/src/window.rs index 0713ad4a0e..8817f1152d 100644 --- a/voxygen/src/window.rs +++ b/voxygen/src/window.rs @@ -1380,7 +1380,7 @@ pub struct FullScreenSettings { impl Default for FullScreenSettings { fn default() -> Self { Self { - enabled: false, + enabled: true, mode: FullscreenMode::Borderless, resolution: [1920, 1080], bit_depth: None,