1
0
Fork 0
forked from wry/wry

icons: add icon infrastructure

This commit is contained in:
Julian Orth 2025-04-24 11:40:47 +02:00
parent 4970749924
commit 9192446602
10 changed files with 343 additions and 3 deletions

View file

@ -1545,6 +1545,7 @@ impl ConfigProxyHandler {
}
self.state.root.clone().node_visit(&mut V);
self.state.damage(self.state.root.extents.get());
self.state.icons.update_sizes(&self.state);
}
fn colors_changed(&self) {
@ -1561,6 +1562,7 @@ impl ConfigProxyHandler {
}
self.state.root.clone().node_visit(&mut V);
self.state.damage(self.state.root.extents.get());
self.state.icons.clear();
}
fn get_sized(&self, sized: Resizable) -> Result<ThemeSized, CphError> {