Skip to content

Commit

Permalink
style: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
0PandaDEV committed Nov 21, 2024
1 parent 3ae0313 commit 7e6b2f8
Showing 1 changed file with 12 additions and 16 deletions.
28 changes: 12 additions & 16 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,18 @@ fn main() {
let main_window = if let Some(window) = app.get_webview_window("main") {
window
} else {
WebviewWindow::builder(
app.handle(),
"main",
WebviewUrl::App("index.html".into())
)
.title("Qopy")
.resizable(false)
.fullscreen(false)
.inner_size(750.0, 474.0)
.focused(true)
.skip_taskbar(true)
.visible(false)
.decorations(false)
.transparent(true)
.always_on_top(false)
.build()?
WebviewWindow::builder(app.handle(), "main", WebviewUrl::App("index.html".into()))
.title("Qopy")
.resizable(false)
.fullscreen(false)
.inner_size(750.0, 474.0)
.focused(true)
.skip_taskbar(true)
.visible(false)
.decorations(false)
.transparent(true)
.always_on_top(false)
.build()?
};

let _ = api::database::setup(app);
Expand Down

0 comments on commit 7e6b2f8

Please sign in to comment.