fix windows threadding ccm window bug

This commit is contained in:
2026-01-04 17:56:36 +08:00
parent afdff29637
commit 96ba44613d
4 changed files with 54 additions and 9 deletions

View File

@@ -364,7 +364,7 @@ fn save_client_config(config: AppConfig) -> Result<(), String> {
}
#[tauri::command]
fn open_client_config_manager() -> Result<(), String> {
async fn open_client_config_manager() -> Result<(), String> {
open_config_manager_window().map_err(|e| e.to_string())
}