Skip to content

Commit

Permalink
fix(popups): negative y offset
Browse files Browse the repository at this point in the history
  • Loading branch information
technobaboo committed Jul 24, 2024
1 parent c7e6228 commit 19c15bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/surface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ impl Surface {
) -> Result<Self, NodeError> {
let position = [
geometry.origin.x as f32 / PPM,
geometry.origin.y as f32 / PPM,
-geometry.origin.y as f32 / PPM,
thickness,
];
let mut surface = Self::create(
Expand Down

0 comments on commit 19c15bc

Please sign in to comment.