diff options
author | 2019-12-06 19:37:56 +0100 | |
---|---|---|
committer | 2019-12-11 21:34:40 +0100 | |
commit | a88aae5e04e0a92457e5dd617a86af823e90af6c (patch) | |
tree | 2b3601cc15d041709a883c3b80685cf8e0baaa20 /wgpu/src/svg.rs | |
parent | 80324284282f173e4d26e1f297daaf71a93f51a6 (diff) | |
download | iced-a88aae5e04e0a92457e5dd617a86af823e90af6c.tar.gz iced-a88aae5e04e0a92457e5dd617a86af823e90af6c.tar.bz2 iced-a88aae5e04e0a92457e5dd617a86af823e90af6c.zip |
Added an `Icon` widget to native.
Diffstat (limited to '')
-rw-r--r-- | wgpu/src/svg.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wgpu/src/svg.rs b/wgpu/src/svg.rs index 87394799..1b8f14b0 100644 --- a/wgpu/src/svg.rs +++ b/wgpu/src/svg.rs @@ -4,12 +4,13 @@ use iced_native::{Hasher, Rectangle}; use std::{ cell::RefCell, collections::{HashMap, HashSet}, + fmt::Debug, hash::{Hash, Hasher as _}, mem, path::PathBuf, rc::Rc, + u32, }; -use std::fmt::Debug; #[derive(Debug)] |