feat: move default_icon to assets

This commit is contained in:
mrxiaozhuox 2022-02-14 16:53:35 +08:00
parent dd9f0f362e
commit e3e5f22bc7
3 changed files with 1 additions and 1 deletions

View file

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

View file

@ -88,7 +88,7 @@ impl DesktopConfig {
impl DesktopConfig {
pub(crate) fn with_default_icon(mut self) -> Self {
let bin: &[u8] = include_bytes!("default_icon.bin");
let bin: &[u8] = include_bytes!("./assets/default_icon.bin");
let rgba = Icon::from_rgba(bin.to_owned(), 460, 460).expect("image parse failed");
self.window.window.window_icon = Some(rgba);
self