Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions fastplotlib/graphics/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,10 @@ def _set_world_object(self, wo: pygfx.WorldObject):
if not all(wo.world.rotation == self.rotation):
self.rotation = self.rotation

# set scale if it's not (1, 1, 1)
if not all(wo.world.scale == self.scale):
self.scale = self.scale

@property
def tooltip_format(self) -> Callable[[dict], str] | None:
"""
Expand Down
Loading