🐛 更新下位置

This commit is contained in:
Tw93
2023-01-14 10:34:03 +08:00
parent f8ec4f8fb4
commit 3601865a75

View File

@@ -1,8 +1,6 @@
// at the top of main.rs - that will prevent the console from showing // at the top of main.rs - that will prevent the console from showing
#![windows_subsystem = "windows"] #![windows_subsystem = "windows"]
extern crate image; extern crate image;
use dirs::download_dir;
use std::path::PathBuf;
use tauri_utils::config::{Config, WindowConfig}; use tauri_utils::config::{Config, WindowConfig};
use wry::{ use wry::{
application::{ application::{
@@ -14,11 +12,6 @@ use wry::{
webview::WebViewBuilder, webview::WebViewBuilder,
}; };
enum UserEvent {
DownloadStarted(String, String),
DownloadComplete(Option<PathBuf>, bool),
}
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
use wry::application::{ use wry::application::{
accelerator::{Accelerator, SysMods}, accelerator::{Accelerator, SysMods},
@@ -33,6 +26,14 @@ use wry::application::window::Icon;
#[cfg(any(target_os = "linux", target_os = "windows"))] #[cfg(any(target_os = "linux", target_os = "windows"))]
use wry::webview::WebContext; use wry::webview::WebContext;
use dirs::download_dir;
use std::path::PathBuf;
enum UserEvent {
DownloadStarted(String, String),
DownloadComplete(Option<PathBuf>, bool),
}
fn main() -> wry::Result<()> { fn main() -> wry::Result<()> {
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
let (menu_bar_menu, close_item) = { let (menu_bar_menu, close_item) = {