Fix sandbox coords #39

Merged
mars merged 4 commits from fix-sandbox-coords into main 2022-11-16 00:13:00 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit a925d6b94d - Show all commits

View File

@ -118,7 +118,7 @@ impl PanelWindow {
self.current_size = size;
let size = canary::Vec2::new(size.x, size.y);
self.panel.on_resize(size / PX_PER_MM);
self.panel.on_resize(size * PX_PER_MM);
}
if let Some(hover_pos) = response.hover_pos() {