Skip to content

Commit

Permalink
more pipeline attempts
Browse files Browse the repository at this point in the history
  • Loading branch information
Crowdedlight committed Oct 28, 2023
1 parent cc04c2a commit e033d3c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
File renamed without changes
File renamed without changes.
2 changes: 1 addition & 1 deletion resources.rc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
icon ICON "gfx\icon.ico"
icon ICON "icon.ico"
5 changes: 3 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#![windows_subsystem = "windows"]

use std::collections::BTreeSet;
use std::path::PathBuf;
use std::path::{Path, PathBuf};
use std::sync::atomic::{AtomicU32, Ordering};
use std::sync::Arc;
use std::time::{Duration, Instant};
Expand Down Expand Up @@ -646,9 +646,10 @@ pub fn main() -> iced::Result {
Amdu::run(Settings {
exit_on_close_request: false,
window: window::Settings {
icon: Some(icon::from_file_data(include_bytes!("..\\icon.png"), Some(image::ImageFormat::Png)).expect("Failed to load icon")),
icon: Some(icon::from_file_data(include_bytes!("../gfx/icon.png"), Some(image::ImageFormat::Png)).expect("Failed to load icon")),
..Default::default()
},
..Settings::default()
})

}

0 comments on commit e033d3c

Please sign in to comment.