We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da5024a commit c95fdb4Copy full SHA for c95fdb4
Source/Fn/Binary.rs
@@ -7,7 +7,7 @@ pub fn Fn() {
7
.build()
8
.expect("Cannot build.")
9
.block_on(async {
10
- let Builder = if cfg!(debug_assertions) {
+ let mut Builder = if cfg!(debug_assertions) {
11
tauri::Builder::default().plugin(tauri_plugin_devtools::init())
12
} else {
13
tauri::Builder::default()
@@ -20,7 +20,7 @@ pub fn Fn() {
20
21
Builder
22
.setup(|Tauri| {
23
- let Daemon = tauri::WebviewWindowBuilder::new(
+ let mut Daemon = tauri::WebviewWindowBuilder::new(
24
Tauri,
25
"Daemon",
26
tauri::WebviewUrl::App("index.html".into()),
tauri.conf.json
@@ -118,4 +118,4 @@
118
"identifier": "land.editor.binary",
119
"productName": "Mountain",
120
"version": "0.0.1"
121
-}
+}
0 commit comments