mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
style: formatting
This commit is contained in:
parent
3ae0313975
commit
7e6b2f8b63
1 changed files with 12 additions and 16 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue