Added path to image hash so it updates when path changes

This commit is contained in:
Nicholas Pienta 2019-12-01 18:13:01 -05:00
parent e648de560d
commit f9abee391d

View File

@ -100,6 +100,7 @@ where
}
fn hash_layout(&self, state: &mut Hasher) {
self.path.hash(state);
self.width.hash(state);
self.height.hash(state);
}