소스 검색

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(())
   });
 ```