瀏覽代碼

docs: Update tauri::app::Builder::setup example (#10463)

This resolves a warning emitted by following the example code: warning:
unused `Result` that must be used.
deadmeu 1 年之前
父節點
當前提交
699319d8a7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      core/tauri/src/app.rs

+ 1 - 1
core/tauri/src/app.rs

@@ -1342,7 +1342,7 @@ use tauri::Manager;
 tauri::Builder::default()
   .setup(|app| {
     let main_window = app.get_window("main").unwrap();
-    main_window.set_title("Tauri!");
+    main_window.set_title("Tauri!")?;
     Ok(())
   });
 ```