Home Website Youtube GitHub

Animpicker profile pic

hello! Any idea why the profile pic is showing only half of it? I’m not using any different resolution for it, just the one in animpicker images

image
image

Cheers.

Which version of mGear and Maya? And what is the resolution of your monitor?

In mGear 3.6, I don’t see this, but in 3.7.9 I do see the same thing.

edit: In 3.6 it looked like this in SnapshotWidget(BackgroundWidget) in anim_picker/widgets/basic.py:

        self.setFixedWidth(80)
        self.setFixedHeight(80)

In 3.7.9 it was modified like this:

        self.setFixedWidth(pyqt.dpi_scale(80))
        self.setFixedHeight(pyqt.dpi_scale(80))

It seems this is the reason, but I don’t know the fix. The dpi scaling fixed some other offset bugs in high resolution monitors.

1 Like

@Rafael has been working to improve scaling compatibility in the latest version. Looks like it is a complex topic to make it work on all platforms

1 Like

@Milio Hey.

Scaling has been an issue across all the different versions and platforms. But I think here its just a fixed width & height. There has not been much request for displaying character thumbnail in the correct aspect ratio for the image. But I can definitely update it soon to show as much as possible for the space.

Let us know what version of anim_picker/mgear/maya you are using.

2 Likes

thank you guys!

I’m using mGear version: 3.7.11, picker 1.2.2 and 4k monitors 100% scale for interface scale.

image