Skip to content

Commit c95fdb4

Browse files
1 parent da5024a commit c95fdb4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Source/Fn/Binary.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn Fn() {
77
.build()
88
.expect("Cannot build.")
99
.block_on(async {
10-
let Builder = if cfg!(debug_assertions) {
10+
let mut Builder = if cfg!(debug_assertions) {
1111
tauri::Builder::default().plugin(tauri_plugin_devtools::init())
1212
} else {
1313
tauri::Builder::default()
@@ -20,7 +20,7 @@ pub fn Fn() {
2020

2121
Builder
2222
.setup(|Tauri| {
23-
let Daemon = tauri::WebviewWindowBuilder::new(
23+
let mut Daemon = tauri::WebviewWindowBuilder::new(
2424
Tauri,
2525
"Daemon",
2626
tauri::WebviewUrl::App("index.html".into()),

tauri.conf.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,4 @@
118118
"identifier": "land.editor.binary",
119119
"productName": "Mountain",
120120
"version": "0.0.1"
121-
}
121+
}

0 commit comments

Comments
 (0)