mirror of
https://github.com/librekeys/picoforge.git
synced 2026-04-14 08:44:16 -07:00
This commit basically removes the logs view from the application(redundant). And also fixes all the clippy errors in the UI.
15 lines
360 B
Rust
15 lines
360 B
Rust
#[cfg(windows)]
|
|
#[allow(clippy::single_component_path_imports)]
|
|
use tauri_winres;
|
|
|
|
// Configures windows application resource.( fix for app icon and launching app as admin)
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
let mut res = tauri_winres::WindowsResource::new();
|
|
res.set_icon("static/appIcons/icon.ico");
|
|
res.compile().unwrap();
|
|
}
|
|
|
|
#[cfg(unix)]
|
|
fn main() {}
|