Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
CramBL committed Feb 1, 2025
1 parent bd8a159 commit ed6ca99
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#![warn(clippy::all, rust_2018_idioms)]

use std::sync::OnceLock;
use semver::Version;
use std::sync::OnceLock;
mod app;
use crate::app::App;

Expand Down Expand Up @@ -58,8 +58,7 @@ pub fn run_app() -> eframe::Result {
.with_min_inner_size([100.0, 80.0])
.with_drag_and_drop(true)
.with_icon(
eframe::icon_data::from_png_bytes(crate::APP_ICON)
.expect("Failed to load icon"),
eframe::icon_data::from_png_bytes(crate::APP_ICON).expect("Failed to load icon"),
),
..Default::default()
};
Expand Down

0 comments on commit ed6ca99

Please sign in to comment.