UI & windo config adjustments

This commit is contained in:
2026-01-13 15:58:52 +08:00
parent 354e362ac3
commit 08b4bc4ca3
7 changed files with 94 additions and 78 deletions

View File

@@ -22,6 +22,7 @@ pub fn open_app_menu_window() {
.title("Friendolls")
.inner_size(400.0, 550.0)
.resizable(true)
.maximizable(false)
.decorations(true)
.transparent(false)
.shadow(true)

View File

@@ -187,8 +187,10 @@ fn open_config_manager_window_inner(
CLIENT_CONFIG_MANAGER_WINDOW_LABEL,
tauri::WebviewUrl::App("/client-config-manager".into()),
)
.title("Friendolls Client Config Manager")
.inner_size(600.0, 500.0)
.title("Advanced Configuration")
.inner_size(300.0, 420.0)
.resizable(false)
.maximizable(false)
.visible(false)
.build()
{

View File

@@ -109,6 +109,7 @@ pub async fn open_doll_editor_window(doll_id: Option<String>) {
.title("Doll Editor")
.inner_size(300.0, 400.0)
.resizable(false)
.maximizable(false)
.decorations(true)
.transparent(false)
.shadow(true)

View File

@@ -32,6 +32,7 @@ pub fn open_welcome_window() {
.title("Welcome to Friendolls")
.inner_size(420.0, 420.0)
.resizable(false)
.maximizable(false)
.decorations(true)
.transparent(false)
.shadow(true)