From 1d3382af75d492014ffb44fc97aeceed59ea0fb7 Mon Sep 17 00:00:00 2001 From: 4gray Date: Wed, 27 Nov 2024 18:44:37 +0100 Subject: [PATCH] feat: add fullscreen capability to window settings Adds the "core:window:allow-set-fullscreen" capability to the default configuration. This change enables the application to support fullscreen mode, enhancing user experience and providing more flexibility in window management --- src-tauri/capabilities/default.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index fcd9eeb7..e1246c7b 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -39,6 +39,7 @@ "fs:default", "updater:default", "dialog:default", - "process:default" + "process:default", + "core:window:allow-set-fullscreen" ] }