makehumancommunity / makehuman

This is the main repository for the MakeHuman application as such.
http://www.makehumancommunity.org
Other
1.18k stars 244 forks source link

Qt OpenGL update from QGLWidget to QOpenGLWidget to fix blank window … #197

Closed kshepherd2013 closed 2 years ago

kshepherd2013 commented 2 years ago

After updating to Kubuntu 22.04 I found that Makehuman would run, but the main window is simply black and blank. I think this problem is likely to be shared by other users. When reviewing the Qt python documentation, I saw that QGLWidget has been deprecated since December 2014 (Qt v5.4) and should be replaced with QOpenGLWidget - I also had to change some of the function calls, which have changed between these widgets. I made this replacement and it fixed my problem - I am once more able to see the default human when atarting makehuman, and so far all functions seem to be working.

joepal1976 commented 2 years ago

Thank you, this looks very sensible.

Before merging, I'll test it on some other platforms too, mainly windows and earlier versions of ubuntu. It might take a few days before I'm able to do this.

kshepherd2013 commented 2 years ago

Great, Thank you Joel. Please tell me if I can be of any help.

Aranuvir commented 2 years ago

Can we merge this to a testing branch?

joepal1976 commented 2 years ago

I've pushed the PR branch to https://github.com/makehumancommunity/makehuman/tree/kshepherd2013-master so it can be tested more easily.

With initial testing on ubuntu 20.04, it seems this change causes a GL crash (see below). Further, it seems it causes transparency to stop working in for example the skeleton view.

gl.reshape
Traceback (most recent call last):
  File "/home/joepal/source/makehuman/makehuman-github-qt/makehuman/./lib/glmodule.py", line 243, in reshape
    updatePickingBuffer()
  File "/home/joepal/source/makehuman/makehuman-github-qt/makehuman/./lib/glmodule.py", line 162, in updatePickingBuffer
    glReadPixels(0, 0, rwidth, height, GL_RGB, GL_UNSIGNED_BYTE, pickingBuffer)
  File "/usr/lib/python3/dist-packages/OpenGL/GL/images.py", line 368, in glReadPixels
    GL_1_1.glReadPixels(
  File "/usr/lib/python3/dist-packages/OpenGL/error.py", line 228, in glCheckError
    raise GLError(
OpenGL.error.GLError: GLError(
        err = 1282,
        description = b'invalid operation',
        baseOperation = glReadPixels,
        cArguments = (
                0,
                0,
                304,
                420,
                GL_RGB,
                GL_UNSIGNED_BYTE,
                c_void_p(51807312),
        )
)
Creating new texture for dynamic image data/litspheres/adaptive_skin_tone.png.
initTexture: 256, 256, False
Creating new texture for image /home/joepal/source/makehuman/makehuman-github-qt/makehuman/data/eyes/materials/brown_eye.png.
initTexture: 1024, 1024, False
Creating new texture for image /home/joepal/source/makehuman/makehuman-github-qt/makehuman/data/litspheres/skinmat_eye.png.
initTexture: 256, 256, False
gl.reshape
Traceback (most recent call last):
  File "/home/joepal/source/makehuman/makehuman-github-qt/makehuman/./lib/glmodule.py", line 243, in reshape
    updatePickingBuffer()
  File "/home/joepal/source/makehuman/makehuman-github-qt/makehuman/./lib/glmodule.py", line 162, in updatePickingBuffer
    glReadPixels(0, 0, rwidth, height, GL_RGB, GL_UNSIGNED_BYTE, pickingBuffer)
  File "/usr/lib/python3/dist-packages/OpenGL/GL/images.py", line 368, in glReadPixels
    GL_1_1.glReadPixels(
  File "/usr/lib/python3/dist-packages/OpenGL/error.py", line 228, in glCheckError
    raise GLError(
OpenGL.error.GLError: GLError(
        err = 1282,
        description = b'invalid operation',
        baseOperation = glReadPixels,
        cArguments = (
                0,
                0,
                1032,
                673,
                GL_RGB,
                GL_UNSIGNED_BYTE,
                c_void_p(83194160),
        )
)
kshepherd2013 commented 2 years ago

I can confirm that on Ubuntu 22.04 I also get the glReadPixels "invalid operation" messages (no crash though) from the updatePickingBuffer function in glmodule.py and that the transparency is missing on the Skeleton screen. In trying to diagnose this, I notice that the transparency seems to work if I use the --nomultisampling flag, as in: python3 makehuman.py --debugopengl --fullloggingopengl --nomultisampling I hope that someone familiar with the code can suggest a fix.
I will have another go at it later, but I have no knowledge of this code base and am working in the dark.

kshepherd2013 commented 2 years ago

With further testing, I notice that I no longer get the glReadPixels error if I disable sample buffers in the startup code. I did this by commenting out two lines in qtui.py Canvas init lines 186,187:

if not G.preStartupSettings["noSampleBuffers"]:

    #    format.setSamples(4)
joepal1976 commented 2 years ago

I can confirm that when disabling multisampling and disabling sample buffers, things seem to work without any visible downside on Ubuntu 20.04. I hope to find some time during the weekend to test with windows and other systems.

I pushed a fix with the above to the ksheperd branch mentioned above, so I can make a functional build for windows.

Anyway, regarding working in the dark... The sad truth about this part of the code is that it was written long ago for a very different situation and by people who are no longer around. The GL backend should ideally be rewritten from scratch for a modern-day GL version, but that's more than we can handle with the current manpower.

So I'm going to hope that this will be an acceptable fix for now, and include it in the nightly builds for further testing, once I have made a few more sanity checks on my local machines.

kshepherd2013 commented 2 years ago

Thank you Joel, I hope that this OpenGL code will work in the Qt python context for a good few years, so that the developers can concentrate on the more unique aspects of 3d modelling and animation in Makehuman, which have already reached a very high standard.

joepal1976 commented 2 years ago

There is now a windows build at https://download.tuxfamily.org/makehuman/nightly/makehuman-ksheperd-20220702-nightly-windows.zip

Initial testing indicates that it works there too

joepal1976 commented 2 years ago

As I haven't seen any downsides when I've tested, I'll merge to master so we can get it out in the nightlies.

kshepherd2013 commented 2 years ago

Thank you Joel. I have tested the latest master on a clean Kubuntu v22.04 and it works well :) I had to install a couple of extra packages, so I have updated the wiki FAQ. I used: sudo apt install -y python3 python3-opengl python3-pyqt5 python3-pyqt5.qtopengl python3-pyqt5.qtsvg python3-numpy git git-lfs to prepare the system, after which everything seemed to work fine. (Simply adding these three packages: python3-pyqt5.qtopengl python3-pyqt5.qtsvg git-lfs)

joepal1976 commented 2 years ago

@kshepherd2013 I'm working on getting a 22.04 PPA build out on https://launchpad.net/~makehuman-official/+archive/ubuntu/makehuman-community too, but it seems my launchpad keys have expired.

rwbaer commented 2 years ago

I don't know if its specifically related to this fix, but I downloaded the Windows nightly 20220702 alpha (HEAD:c47b8840) (Windows 11, NVidia graphics), and there is slightly strange behavior of the z-buffer transparency on the [Rendering > Viewer] tab.

As this is a not often used section of the interface (at least by me), so I don't know if it was here before?

MH_Feedback

joepal1976 commented 2 years ago

It would seem this is related, yes. That commit is from the feature branch, so I'm guessing you downloaded the ksheperd build rather than the standard nightly?

The problem does not appear in master as it looked before the merge. But it does appear for me too now after the merge.

Unfortunately there is no crash or warning or error in the log, making this hard to debug.

I'll keep the changes in the master branch for now and see if we can figure out what's missing in the render section specifically.

In the worst case, we might have to choose between a build running on ubuntu 22.04 and a build where the render tab works.

joepal1976 commented 2 years ago

Anyway, I haven't solved the problem through an hour of changing various GL settings.

I'm guessing the problem is somewhere in the renderToBuffer method which starts on line 825 in glmodule, but I don't get any closer than that.

Switching the "have_multisample" global variable in glmodules makes no visible difference at least.

rwbaer commented 2 years ago

Yes, the kshepard build.

More playing in the render tab, and I have had 2 "Crashes" that were python crashes, not MH crashes. I ignored it the first time. The second time I let it open the Visual Studio Debugger (which I know little about). If it gives us any clues here is what I was able to copy from the "output" tab.

What version of QT (or pyQT, pyopenGL) was used to build this nightly? How does that relate to native versions in Ubuntu 20.04 and in 22.04 that started us down this road? Are our Windows dependencies updated in the kshepard build at the same versions as Ubuntu 22.04?

The python crash is quasi-reproducible: Start MH; Click the render tab and render; Once the image is rendered right?-click and drag around in the rendered image.

` 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\pythonw.exe'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ntdll.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\kernel32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\KernelBase.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ucrtbase.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\vcruntime140.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\python37.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\shlwapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msvcrt.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\version.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ws2_32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\rpcrt4.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\advapi32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\sechost.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cryptsp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\rsaenh.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cryptbase.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\bcryptprimitives.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\python3.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\QtCore.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\bin\Qt5Core.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\user32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\win32u.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\mpr.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\netapi32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\gdi32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\gdi32full.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\userenv.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msvcp_win.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\shell32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ole32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\combase.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\winmm.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msvcp140.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\vcruntime140_1.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\netutils.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\srvcli.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\imm32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\sip.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_socket.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\select.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_queue.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_ctypes.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\oleaut32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy.libs\libopenblas.PYQHXLVVQ7VESDPUVUADXEVJOBGHJPAY.gfortran-win_amd64.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\core_multiarray_umath.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\core_multiarray_tests.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\linalg\lapack_lite.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\linalg_umath_linalg.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_bz2.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_lzma.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_decimal.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\fft_pocketfft_internal.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random\mtrand.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_bit_generator.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_common.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_hashlib.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\libcrypto-1_1.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\bcrypt.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_bounded_integers.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_mt19937.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_philox.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_pcg64.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_sfc64.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\numpy\random_generator.cp37-win_amd64.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\opengl32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\glu32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DXCore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\QtGui.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\bin\Qt5Gui.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\QtOpenGL.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\bin\Qt5OpenGL.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\bin\Qt5Widgets.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\dwmapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\uxtheme.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\QtWidgets.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\QtSvg.pyd'. Module was built without symbols. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\bin\Qt5Svg.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\platforms\qwindows.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wtsapi32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\kernel.appcore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\SHCore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\windows.storage.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\WinTypes.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\profapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\styles\qwindowsvistastyle.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qgif.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qicns.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qico.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qjpeg.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qsvg.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qtga.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qtiff.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qwbmp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\imageformats\qwebp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\pkgs\PyQt5\Qt\plugins\iconengines\qsvgicon.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DWrite.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\d3d9.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msasn1.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cryptnet.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\crypt32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wintrust.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\imagehlp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\directxdatabasehelper.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msctf.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\clbcatq.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DataExchange.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\twinapi.appcore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\TextInputFramework.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\AppXDeploymentClient.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\nv_dispig.inf_amd64_f421659dfaa4246d\nvoglv64.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\setupapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\drvstore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\devobj.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cfgmgr32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wldp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ntmarta.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\nvspcap64.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\powrprof.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\umpdc.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\winsta.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python_ssl.pyd'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\makehuman-community\Python\libssl-1_1.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.25151.1000_none_75acd99f5f1e10b1\comctl32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\WindowsCodecs.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\thumbcache.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\policymanager.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\msvcp110_win.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\mswsock.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\comdlg32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\propsys.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.FileExplorer.Common.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\windowsudk.shellcommon.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\xmllite.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\OneCoreCommonProxyStub.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\vaultcli.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\dui70.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\duser.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ExplorerFrame.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\oleacc.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\TextShaping.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.UI.FileExplorer.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\CoreMessaging.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ntshrui.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\sspicli.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cscapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\edputil.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\StructuredQuery.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\atlthunk.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.UI.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.UI.Immersive.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\samcli.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\samlib.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\Common Files\microsoft shared\ink\tiptsf.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\CoreUIComponents.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\apphelp.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\networkexplorer.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\Microsoft Office\root\Office16\ONFILTER.DLL'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.System.Launcher.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.StateRepositoryCore.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\p9np.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\drprov.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ntlanman.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\davclnt.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wkscli.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\coml2.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Program Files\Microsoft OneDrive\22.131.0619.0001\FileSyncShell64.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\secur32.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wininet.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\linkinfo.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\mscoree.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\sxs.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\vcruntime140_1_clr0400.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\ucrtbase_clr0400.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\vcruntime140_clr0400.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\psapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\mscorlib\03b57edc78c2199257a2e6d7a0da3942\mscorlib.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\AppResolver.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System\aa51d6dd6a9ce1db0b1f308aadcd9062\System.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Drawing\3a5f2c386d618063476738a3e8d49322\System.Drawing.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DriverStore\FileRepository\iastorpinningcomponent.inf_amd64_fac18e2da6ec7b25\iaStorAfsServiceApi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Core\f8716b659d89da6273d1fa5e1f8d7d75\System.Core.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Configuration\db0f0006f6a5c546cd21e0acfd9a1dcf\System.Configuration.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Xml\be09ef8439bc6eb0a8e1e773974b3944\System.Xml.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\twinapi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\assembly\NativeImages_v4.0.30319_64\System.Compba577418#\a0357728c1cd3e81ad0aba6c42738be8\System.ComponentModel.Composition.ni.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\EhStorShell.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\cscui.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\Windows.StateRepositoryPS.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\dlnashext.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\PlayToDevice.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\DevDispItemProvider.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\MMDevAPI.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\deviceassociation.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\wpdshext.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.25151.1000_none_a697cc84b9b08a7f\GdiPlus.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\PortableDeviceApi.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\PortableDeviceTypes.dll'. 'pythonw.exe' (Win32): Loaded 'C:\Windows\System32\EhStorAPI.dll'.

`

Aranuvir commented 1 year ago

Shouldn't we revert the master commit? I didn't see greater problems on my native Kubuntu i7-9750H/NVIDIA setup before the commit and it worked on my native Kubuntu i7-1165G7 (here without shaders). Although the latest commit seems to enable shaders on my small notebook, we should reconsider the changes when they introduce serious bugs for others.

kshepherd2013 commented 1 year ago

I was able to reproduce at least one of the problems on the "Rendering" tab - caused by float values of width and height being passed to lib/ image_qt.py def resized(...) I changed line 129 to read: qi = qi.scaled(QtCore.QSize(int(width), int(height)), and now I am able to use Rendering, Quick Render, and Advanced Render which now produce images on my machine. I have never used or needed the "Rendering" tab and so am not a good judge of how it is supposed to work - perhaps someone who knows it better than I do could have a look, and maybe even give me a test case, with a screenshot of how it should look?

Aranuvir commented 1 year ago

Ok, I've missed that Rob's issue were mainly happening in the render tab and I was more concerned about those python crashes, which are probably not due to some type mismatches. If the rest of the viewport is working as expected, I think the render tab is dispensable. It's purpose is to quickly create preview images or generate thumbnails for new assets. Something that can be done in Blender as well.

@Rob: Is the render tab the only part that is causing issues?

In that case I'd vote to keep the changes and document the render tab problem as a known bug. Maybe we can solve it later, too.

@Kevin: Thank you for investing your time to sort out problems in the application. Your work is very much appreciated.

joepal1976 commented 1 year ago

Atm I lean towards keeping the changes in master for now and see if we can get through the issue in a forwards manner rather than reverting. As we're talking about the nightly build and the renderering tab, I'm thinking that there is a low probability it'd disrupt someone's critical work. If we fail getting a solution that works on both ubuntu 20.04 and ubuntu 22.04, it's possible we'll have to revert master and keep a specific branch/build for 22.04, and then probably without a working rendering view.

This said, I don't currently even have a hypothesis as to what would fix the rendering error. Best guess is that the calculation of the z-depth calculation of polygons to render ends up wrong so that polygons that are further inwards in the image are rendered on top of surfaces which are closer to the camera. However, why this happens and where is currently beyond me. It might be a simple setting in the GL engine, or it might be logic in a shader file.

@kshepherd2013 : This is how it looks on my machine, with the default character in the rendering view. First image is before your changes, on master commit e9dcf887c26310b85e06f44ac025d8937a72fbcd. Second image is current master head.

qt_before qt_after

The desirable state is a render that doesn't look like an anatomical pick-apart model.

rwbaer commented 1 year ago

Ran under Windows 11 and the behavior of the 7/9/22 build is same as before with alpha -plane issues in reneder tab (@Aranuvir - yes this is the only place I''ve seen problems at present). Because the original issue was about Ubuntu 22.04, I also tried running MH under Ubuntu 22.04 on Windows WSL2 kernel.

Before I tried running from source using Windows WSL2 and Ubuntu 22.04 LTS, I ran the following code:

sudo apt install python3-numpy python3-pyqt5 python3-pyqt5.qtopengl python3-pyqt5.qtsvg python3-opengl
git clone https://github.com/makehumancommunity/makehuman.git
apt install git-lfs
python3 ~/makehuman/makehuman/download_assets_git.py
python3 ~/makehuman/makehuman/makehuman.py

At startup, I get the interface with no human is vissible in the central window. The startup printout on the console shows multiple Qt errors. I went to the render Window and did a render and then left-dragged, right-dragged and middle dragged. I did not get a crash, but I did get some console and MakeHuman.log errors of possible interest. They may suggest additional changes to Qt that we need to think about and include some Qt.MouseButton issues that could be python-crash related.

I apologize if they are uninteresting to the present issue.

Examples of the errors to look for in the code below and they can be viewed in clearer context in the console output and makehuman.log file included inline below:

qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch) no compressed targets found compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/african-female-young.target ... Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int' QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'

qi = qi.scaled(QtCore.QSize(width, height),

TypeError: arguments did not match any overloaded call: QSize(): too many arguments QSize(int, int): argument 1 has unexpected type 'float' QSize(QSize): argument 1 has unexpected type 'float'

Unloading plugin 9_massproduce Unloaded plugin 9_massproduce dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>]) dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>]) dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>]) dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>]) Segmentation fault

rwbaer@Cyber-Tower:~$ cd /makehuman/makehuman
-bash: cd: /makehuman/makehuman: No such file or directory
rwbaer@Cyber-Tower:~$ ls
makehuman
rwbaer@Cyber-Tower:~$ cd makehuman
rwbaer@Cyber-Tower:~/makehuman$ ls
buildscripts  LICENSE.ASSETS.md  LICENSE.md  README.md         v1py3
Jenkinsfile   LICENSE.CODE.md    makehuman   requirements.txt
rwbaer@Cyber-Tower:~/makehuman$ cd makehuman
rwbaer@Cyber-Tower:~/makehuman/makehuman$ ls
apps          cleanpyc.sh         core                    download_assets.py  license.txt   __pycache__
cleannpz.bat  compile_models.py   create_pylint_log.py    icons               makehuman     pylintrc
cleannpz.sh   compile_proxies.py  data                    lib                 makehuman.py  shared
cleanpyc.bat  compile_targets.py  download_assets_git.py  licenses            plugins       testsuite
rwbaer@Cyber-Tower:~/makehuman/makehuman$ python3 makehuman.py
MakeHuman Copyright (C) 2001-2020 http://www.makehumancommunity.org
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it
under certain conditions. For details use the option --license

PRE STARTUP SETTING: useHDPI = True
PRE STARTUP SETTING: noShaders = False
PRE STARTUP SETTING: noSampleBuffers = False
Initialized logging
VERSION: master:7378f194
SHORT VERSION: alpha
LONG VERSION: 1.2.1 alpha (master:7378f194)
BASEMESH VERSION: hm08
IS BUILT (FROZEN): No
IS RELEASE VERSION: No
DEFAULT ENCODING: utf-8
FILESYSTEM ENCODING: utf-8
STDOUT ENCODING: utf-8
LOCALE PREFERRED ENCODING: UTF-8
WORKING DIRECTORY: /home/rwbaer/makehuman/makehuman
HOME LOCATION: /home/rwbaer
PYTHON PATH: ./:./lib:./apps:./shared:./apps/gui:./core:/home/rwbaer/makehuman/makehuman:/usr/lib/python310.zip:/usr/lib/python3.10:/usr/lib/python3.10/lib-dynload:/usr/local/lib/python3.10/dist-packages:/usr/lib/python3/dist-packages
DLL PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/libnvvp:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.6/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.6/libnvvp:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.5/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.5/libnvvp:/mnt/c/Program Files/Microsoft/jdk-11.0.12.7-hotspot/bin:/mnt/c/WINDOWS/system32:/mnt/c/WINDOWS:/mnt/c/WINDOWS/System32/Wbem:/mnt/c/WINDOWS/System32/WindowsPowerShell/v1.0/:/mnt/c/WINDOWS/System32/OpenSSH/:/mnt/c/Program Files/dotnet/:/mnt/d/Program Files/ffmpeg-2021-04-07-git-c06465a70b-full_build/bin:/mnt/c/Program Files/NVIDIA Corporation/NVIDIA NvDLISR:/mnt/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/mnt/c/Program Files/Microsoft SQL Server/150/Tools/Binn/:/mnt/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn/:/mnt/c/Program Files/SlikSvn/bin:/mnt/c/Program Files/Git/cmd:/mnt/c/Program Files/CMake/bin:/mnt/c/Program Files/Docker/Docker/resources/bin:/mnt/c/ProgramData/DockerDesktop/version-bin:/mnt/c/Program Files/NVIDIA Corporation/Nsight Compute 2022.2.0/:/mnt/c/WINDOWS/system32:/mnt/c/WINDOWS:/mnt/c/WINDOWS/System32/Wbem:/mnt/c/WINDOWS/System32/WindowsPowerShell/v1.0/:/mnt/c/WINDOWS/System32/OpenSSH/:/mnt/c/Program Files/PowerShell/7/:/mnt/c/Users/rbaer/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/rbaer/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/Users/rbaer/.dotnet/tools:/mnt/c/Users/rbaer/AppData/Local/GitHubDesktop/bin:/snap/bin
SYS.VERSION: 3.10.4 (main, Apr  2 2022, 09:04:19) [GCC 11.2.0]
SYS.PLATFORM: linux
SYS.EXECUTABLE: /usr/bin/python3
PLATFORM.MACHINE: x86_64
PLATFORM.PROCESSOR: x86_64
PLATFORM.UNAME.RELEASE: 5.10.102.1-microsoft-standard-WSL2
PLATFORM.LINUX_DISTRIBUTION: Ubuntu 22.04 Jammy Jellyfish
NUMPY.VERSION: 1.21.5
Loaded libGL.so => libGL.so.1 <CDLL 'libGL.so.1', handle 557284548d30 at 0x7fa39c9cdd20>
No OpenGL_accelerate module loaded: No module named 'OpenGL_accelerate'
Loaded libGLU.so => libGLU.so.1 <CDLL 'libGLU.so.1', handle 55728456fff0 at 0x7fa39c9cdde0>
Trying to enable HDPI before launching Qt application
Attribute Qt::AA_EnableHighDpiScaling must be set before QCoreApplication is created.
QT.VERSION: 5.15.3
QT.JPG_SUPPORT: supported
QT.SVG_SUPPORT: supported
QT.PLUGIN_PATH: /usr/lib/x86_64-linux-gnu/qt5/plugins:/usr/bin
QT.PLUGIN_PATH_ENV:
QT.CONF: NOT PRESENT
PYOPENGL.VERSION: 3.1.5
NOSHADERS: not set
NOSAMPLEBUFFERS: not set
GL.VENDOR: Microsoft Corporation
GL.RENDERER: D3D12 (NVIDIA GeForce RTX 2060 SUPER)
GL.VERSION: 3.3 (Compatibility Profile) Mesa 22.0.1
3.30
GLSL.VERSION: 3.30
GL.EXTENSION: GL_ARB_multisample not available (0x samples)
Creating new texture for image data/textures/texture_notfound.png.
GL.EXTENSION: GL_ARB_texture_non_power_of_two enabled
initTexture: 256, 256, False
Setting language to english
Setting language to english
Initializing default theme first.
Theme default version 1.2.0
Loaded theme data/themes/default.mht
Using Qt system style fusion
Loading human
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1006, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1011, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1016, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1021, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1026, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1031, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1146, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1149, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1159, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1162, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1172, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1175, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1185, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1188, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1198, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1201, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1211, resource id: 4194358, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 1214, resource id: 4194358, major code: 130 (Unknown), minor code: 3
compiled file missing: data/3dobjs/base.npz
Problem loading binary mesh: ('compiled file missing: %s', 'data/3dobjs/base.npz')
Loading ASCII mesh data/3dobjs/base.obj.
Calculated maximum number of faces for one vertex: 5
Calculated maximum number of poles for one vertex: 5
Not writing compiled meshes to system paths (data/3dobjs/base.npz).
Loading material from file data/skins/default.mhmat
Shader: adding built-in uniform b'gl_NormalMatrix'
Shader: adding built-in uniform b'gl_ModelViewProjectionMatrix'
VectorUniform(AdditiveShading) = [0.]
VectorUniform(AdditiveShading) = [0.]
Loaded vertex weights MakeHuman weights from file /home/rwbaer/makehuman/makehuman/data/rigs/default_weights.mhw
Loading scene
Loading scene file: data/scenes/default.mhscene
Loading main GUI
Assigning setting loaddir value /home/rwbaer/makehuman/v1py3/models that was loaded before the setting was declared.
Assigning setting savedir value /home/rwbaer/makehuman/v1py3/models that was loaded before the setting was declared.
Assigning setting exportdir value /home/rwbaer/makehuman/v1py3/exports that was loaded before the setting was declared.
Loading plugins
Importing plugin 0_modeling_0_modifiers
Imported plugin 0_modeling_0_modifiers
Loading plugin 0_modeling_0_modifiers
Loading modifiers from data/modifiers/modeling_modifiers.json
Attempting to load targets from NPZ file.
Could not load targets from NPZ, loading individual files from data (Error message: ('Could not load load targets from npz archive. Archive file %s not found.', 'data/targets.npz'))
1280 targets loaded from .target files.
Loaded 249 modifiers from file data/modifiers/modeling_modifiers.json
Loaded 249 modifier descriptions from file data/modifiers/modeling_modifiers_desc.json
Loaded plugin 0_modeling_0_modifiers
Importing plugin 0_modeling_1_bodyshapes
Imported plugin 0_modeling_1_bodyshapes
Loading plugin 0_modeling_1_bodyshapes
Loading modifiers from data/modifiers/bodyshapes_modifiers.json
Loaded 22 modifiers from file data/modifiers/bodyshapes_modifiers.json
Loaded 22 modifier descriptions from file data/modifiers/bodyshapes_modifiers_desc.json
Loaded plugin 0_modeling_1_bodyshapes
Importing plugin 0_modeling_8_random
Imported plugin 0_modeling_8_random
Loading plugin 0_modeling_8_random
Loaded plugin 0_modeling_8_random
Importing plugin 0_modeling_9_custom_targets
Imported plugin 0_modeling_9_custom_targets
Loading plugin 0_modeling_9_custom_targets
Loaded plugin 0_modeling_9_custom_targets
Importing plugin 0_modeling_a_measurement
Imported plugin 0_modeling_a_measurement
Loading plugin 0_modeling_a_measurement
Loading modifiers from data/modifiers/measurement_modifiers.json
Loaded 20 modifiers from file data/modifiers/measurement_modifiers.json
Loaded 20 modifier descriptions from file data/modifiers/measurement_modifiers_desc.json
Loaded plugin 0_modeling_a_measurement
Importing plugin 0_modeling_background
Imported plugin 0_modeling_background
Loading plugin 0_modeling_background
Loaded plugin 0_modeling_background
Importing plugin 1_convert_model_tags
Imported plugin 1_convert_model_tags
Loading plugin 1_convert_model_tags
Loaded plugin 1_convert_model_tags
Importing plugin 1_mhapi
Imported plugin 1_mhapi
Loading plugin 1_mhapi
Loaded plugin 1_mhapi
Importing plugin 2_foot_posing
Imported plugin 2_foot_posing
Loading plugin 2_foot_posing
Loaded plugin 2_foot_posing
Importing plugin 2_posing_expression
Imported plugin 2_posing_expression
Loading plugin 2_posing_expression
Loaded plugin 2_posing_expression
Importing plugin 3_libraries_animation
Imported plugin 3_libraries_animation
Loading plugin 3_libraries_animation
Loaded plugin 3_libraries_animation
Importing plugin 3_libraries_clothes_chooser
Imported plugin 3_libraries_clothes_chooser
Loading plugin 3_libraries_clothes_chooser
Loaded plugin 3_libraries_clothes_chooser
Importing plugin 3_libraries_eye_chooser
Imported plugin 3_libraries_eye_chooser
Loading plugin 3_libraries_eye_chooser
According to mh.getSysDataPath here's high poly eyes data/eyes/high-poly/high-poly.mhclo
Selecting proxy file "data/eyes/high-poly/high-poly.mhclo" from eyes library.
compiled proxy file missing: data/eyes/high-poly/high-poly.mhpxy
Problem loading binary proxy: ('compiled proxy file missing: %s', 'data/eyes/high-poly/high-poly.mhpxy')
Loading proxy file: data/eyes/high-poly/high-poly.mhclo.
Loading material from file /home/rwbaer/makehuman/makehuman/data/eyes/materials/brown.mhmat
Shader: adding built-in uniform b'gl_NormalMatrix'
Shader: adding built-in uniform b'gl_ModelViewProjectionMatrix'
VectorUniform(AdditiveShading) = [0.]
VectorUniform(AdditiveShading) = [0.]
Not writing compiled proxies to system paths (data/eyes/high-poly/high-poly.mhpxy).
compiled file missing: /home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz
Problem loading binary mesh: ('compiled file missing: %s', '/home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz')
Loading ASCII mesh /home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.obj.
Calculated maximum number of faces for one vertex: 4
Calculated maximum number of poles for one vertex: 4
Not writing compiled meshes to system paths (/home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz).
remapping weights for proxy HighPolyEyes
remapping weights for HighPolyEyes took 0.03049 seconds
Loaded plugin 3_libraries_eye_chooser
Importing plugin 3_libraries_eyebrows
Imported plugin 3_libraries_eyebrows
Loading plugin 3_libraries_eyebrows
Loaded plugin 3_libraries_eyebrows
Importing plugin 3_libraries_eyelashes
Imported plugin 3_libraries_eyelashes
Loading plugin 3_libraries_eyelashes
Loaded plugin 3_libraries_eyelashes
Importing plugin 3_libraries_material_chooser
Imported plugin 3_libraries_material_chooser
Loading plugin 3_libraries_material_chooser
Loaded plugin 3_libraries_material_chooser
Importing plugin 3_libraries_polygon_hair_chooser
Imported plugin 3_libraries_polygon_hair_chooser
Loading plugin 3_libraries_polygon_hair_chooser
Loaded plugin 3_libraries_polygon_hair_chooser
Importing plugin 3_libraries_pose
Imported plugin 3_libraries_pose
Loading plugin 3_libraries_pose
Loaded plugin 3_libraries_pose
Importing plugin 3_libraries_proxy_chooser
Imported plugin 3_libraries_proxy_chooser
Loading plugin 3_libraries_proxy_chooser
Loaded plugin 3_libraries_proxy_chooser
Importing plugin 3_libraries_skeleton
Imported plugin 3_libraries_skeleton
Loading plugin 3_libraries_skeleton
Loaded plugin 3_libraries_skeleton
Importing plugin 3_libraries_teeth
Imported plugin 3_libraries_teeth
Loading plugin 3_libraries_teeth
Loaded plugin 3_libraries_teeth
Importing plugin 3_libraries_tongue
Imported plugin 3_libraries_tongue
Loading plugin 3_libraries_tongue
Loaded plugin 3_libraries_tongue
Importing plugin 4_rendering_9_viewer
Imported plugin 4_rendering_9_viewer
Loading plugin 4_rendering_9_viewer
Loaded plugin 4_rendering_9_viewer
Importing plugin 4_rendering_opengl
Imported plugin 4_rendering_opengl
Loading plugin 4_rendering_opengl
Assigning setting rendering_width value 800 that was loaded before the setting was declared.
Assigning setting rendering_height value 600 that was loaded before the setting was declared.
Assigning setting GL_RENDERER_SSS value False that was loaded before the setting was declared.
Assigning setting GL_RENDERER_AA value True that was loaded before the setting was declared.
Loaded plugin 4_rendering_opengl
Importing plugin 4_rendering_scene
Imported plugin 4_rendering_scene
Loading plugin 4_rendering_scene
Setting rendering_width is already declared. Adding it again has no effect.
Setting rendering_height is already declared. Adding it again has no effect.
Loaded plugin 4_rendering_scene
Importing plugin 5_settings_0_settings
Imported plugin 5_settings_0_settings
Loading plugin 5_settings_0_settings
Setting language to english
Theme makehuman version 1.2.0
Loaded theme data/themes/makehuman.mht
Loaded Qt style data/themes/makehuman.qss
Loaded plugin 5_settings_0_settings
Importing plugin 5_settings_mouse
Imported plugin 5_settings_mouse
Loading plugin 5_settings_mouse
Loaded plugin 5_settings_mouse
Importing plugin 5_settings_shortcuts
Imported plugin 5_settings_shortcuts
Loading plugin 5_settings_shortcuts
Loaded plugin 5_settings_shortcuts
Importing plugin 5_settings_userplugins
Imported plugin 5_settings_userplugins
Loading plugin 5_settings_userplugins
Loaded plugin 5_settings_userplugins
Importing plugin 6_help
Imported plugin 6_help
Loading plugin 6_help
Loaded plugin 6_help
Importing plugin 7_data
Imported plugin 7_data
Loading plugin 7_data
Loaded plugin 7_data
Importing plugin 7_example
Imported plugin 7_example
Loading plugin 7_example
Loaded plugin 7_example
Importing plugin 7_expression_mixer
Imported plugin 7_expression_mixer
Loading plugin 7_expression_mixer
Loaded plugin 7_expression_mixer
Importing plugin 7_logging
Imported plugin 7_logging
Loading plugin 7_logging
Loaded plugin 7_logging
Importing plugin 7_material_editor
Imported plugin 7_material_editor
Loading plugin 7_material_editor
Loaded plugin 7_material_editor
Importing plugin 7_profile
Imported plugin 7_profile
Loading plugin 7_profile
Loaded plugin 7_profile
Importing plugin 7_save_targets
Imported plugin 7_save_targets
Loading plugin 7_save_targets
Loaded plugin 7_save_targets
Importing plugin 7_scene_editor
Imported plugin 7_scene_editor
Loading plugin 7_scene_editor
Setting rendering_width is already declared. Adding it again has no effect.
Setting rendering_height is already declared. Adding it again has no effect.
Assigning setting Scene_Editor_FileDlgPath value /home/rwbaer/makehuman/v1py3/data/scenes that was loaded before the setting was declared.
Loaded plugin 7_scene_editor
Importing plugin 7_scripting
Imported plugin 7_scripting
Loading plugin 7_scripting
Loaded plugin 7_scripting
Importing plugin 7_shell
Imported plugin 7_shell
Loading plugin 7_shell
Loaded plugin 7_shell
Importing plugin 7_targets
Imported plugin 7_targets
Loading plugin 7_targets
Loaded plugin 7_targets
Importing plugin 8_asset_downloader
Imported plugin 8_asset_downloader
Loading plugin 8_asset_downloader
Loaded plugin 8_asset_downloader
Importing plugin 8_server_socket
Imported plugin 8_server_socket
Loading plugin 8_server_socket
Loaded plugin 8_server_socket
Importing plugin 9_export_bvh
Imported plugin 9_export_bvh
Loading plugin 9_export_bvh
Loaded plugin 9_export_bvh
Importing plugin 9_export_collada
Imported plugin 9_export_collada
Loading plugin 9_export_collada
Loaded plugin 9_export_collada
Importing plugin 9_export_fbx
Imported plugin 9_export_fbx
Loading plugin 9_export_fbx
Loaded plugin 9_export_fbx
Importing plugin 9_export_light
Imported plugin 9_export_light
Loading plugin 9_export_light
Loaded plugin 9_export_light
Importing plugin 9_export_obj
Imported plugin 9_export_obj
Loading plugin 9_export_obj
Loaded plugin 9_export_obj
Importing plugin 9_export_ogre
Imported plugin 9_export_ogre
Loading plugin 9_export_ogre
Loaded plugin 9_export_ogre
Importing plugin 9_export_stl
Imported plugin 9_export_stl
Loading plugin 9_export_stl
Loaded plugin 9_export_stl
Importing plugin 9_export_uvmap
Imported plugin 9_export_uvmap
Loading plugin 9_export_uvmap
Loaded plugin 9_export_uvmap
Importing plugin 9_massproduce
Imported plugin 9_massproduce
Loading plugin 9_massproduce
Loaded plugin 9_massproduce
Loading GUI
showing category Modelling
showing task Macro modelling
Loading theme
Theme makehuman version 1.2.0
Loaded theme data/themes/makehuman.mht
Loaded Qt style data/themes/makehuman.qss
Applying targets
no compressed targets found
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/african-female-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/african-male-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/asian-female-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/asian-male-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/caucasian-female-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/caucasian-male-young.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/universal-female-young-averagemuscle-averageweight.target
compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/universal-male-young-averagemuscle-averageweight.target
Updating skeleton joint positions
Done baking animations
Loading macro targets
Loading done

libpng warning: iCCP: known incorrect sRGB profile
Creating new texture for dynamic image data/litspheres/adaptive_skin_tone.png.
initTexture: 256, 256, False
Creating new texture for image /home/rwbaer/makehuman/makehuman/data/eyes/materials/brown_eye.png.
initTexture: 1024, 1024, False
Creating new texture for image /home/rwbaer/makehuman/makehuman/data/litspheres/skinmat_eye.png.
initTexture: 256, 256, False
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2454, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2459, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2464, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2469, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2474, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2479, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2500, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2510, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2520, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2530, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2554, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2596, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2601, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2606, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2611, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2616, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2621, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 2663, resource id: 4194396, major code: 130 (Unknown), minor code: 3
libpng warning: iCCP: known incorrect sRGB profile
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4980, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 4991, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5002, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5014, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5015, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5027, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5028, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5042, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5052, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5064, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5065, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5077, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5078, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5093, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5098, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5110, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5111, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5123, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5124, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5135, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5146, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5156, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5168, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5169, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5180, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5193, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5204, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5216, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5217, resource id: 4194396, major code: 130 (Unknown), minor code: 3
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 5228, resource id: 4194396, major code: 130 (Unknown), minor code: 3
hiding task Macro modelling
showing task Random
hiding category Modelling
showing category Rendering
hiding task Random
showing task Render
Rendering at 800x600
Exception during event onClicked
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./core/events3d.py", line 211, in callEvent
    method(event)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/__init__.py", line 125, in onClicked
    mh2opengl.Render(settings)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/mh2opengl.py", line 111, in Render
    img = img.resized(width/2, height/2, filter=image.FILTER_BILINEAR)
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 217, in resized
    return Image(data=self.resized_(width, height, filter))
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 213, in resized_
    return image_qt.resized(self, width, height, filter=filter)
  File "/home/rwbaer/makehuman/makehuman/./lib/image_qt.py", line 129, in resized
    qi = qi.scaled(QtCore.QSize(width, height),
TypeError: arguments did not match any overloaded call:
  QSize(): too many arguments
  QSize(int, int): argument 1 has unexpected type 'float'
  QSize(QSize): argument 1 has unexpected type 'float'
Rendering at 800x600
Exception during event onClicked
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./core/events3d.py", line 211, in callEvent
    method(event)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/__init__.py", line 125, in onClicked
    mh2opengl.Render(settings)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/mh2opengl.py", line 111, in Render
    img = img.resized(width/2, height/2, filter=image.FILTER_BILINEAR)
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 217, in resized
    return Image(data=self.resized_(width, height, filter))
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 213, in resized_
    return image_qt.resized(self, width, height, filter=filter)
  File "/home/rwbaer/makehuman/makehuman/./lib/image_qt.py", line 129, in resized
    qi = qi.scaled(QtCore.QSize(width, height),
TypeError: arguments did not match any overloaded call:
  QSize(): too many arguments
  QSize(int, int): argument 1 has unexpected type 'float'
  QSize(QSize): argument 1 has unexpected type 'float'
hiding task Render
showing task Viewer
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2251, in mouseMoveEvent
    self.horizontalScrollBar().value() + 2*(self.mdown.x() - event.pos().x()))
AttributeError: 'ZoomableImageView' object has no attribute 'mdown'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./lib/qtgui.py", line 2245, in mouseMoveEvent
    self.wheelEvent(QtGui.QWheelEvent(event.pos(),
TypeError: arguments did not match any overloaded call:
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier]): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, int, Qt.Orientation, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, Qt.MouseEventSource, bool): argument 2 has unexpected type 'int'
  QWheelEvent(Union[QPointF, QPoint], Union[QPointF, QPoint], QPoint, QPoint, Union[Qt.MouseButtons, Qt.MouseButton], Union[Qt.KeyboardModifiers, Qt.KeyboardModifier], Qt.ScrollPhase, bool, source: Qt.MouseEventSource = Qt.MouseEventNotSynthesized): argument 2 has unexpected type 'int'
  QWheelEvent(QWheelEvent): argument 1 has unexpected type 'QPoint'
qt.qpa.xcb: QXcbConnection: XCB error: 8 (BadMatch), sequence: 6651, resource id: 4194396, major code: 130 (Unknown), minor code: 3
hiding task Viewer
showing task Scene
ABOUT TO STOP APPLICATION
Unloading plugin 0_modeling_0_modifiers
Unloaded plugin 0_modeling_0_modifiers
Unloading plugin 0_modeling_1_bodyshapes
Unloaded plugin 0_modeling_1_bodyshapes
Unloading plugin 0_modeling_8_random
Unloaded plugin 0_modeling_8_random
Unloading plugin 0_modeling_9_custom_targets
Unloaded plugin 0_modeling_9_custom_targets
Unloading plugin 0_modeling_a_measurement
Unloaded plugin 0_modeling_a_measurement
Unloading plugin 0_modeling_background
Unloaded plugin 0_modeling_background
Unloading plugin 1_convert_model_tags
Unloaded plugin 1_convert_model_tags
Unloading plugin 1_mhapi
Unloaded plugin 1_mhapi
Unloading plugin 2_foot_posing
Unloaded plugin 2_foot_posing
Unloading plugin 2_posing_expression
Unloaded plugin 2_posing_expression
Unloading plugin 3_libraries_animation
Unloaded plugin 3_libraries_animation
Unloading plugin 3_libraries_clothes_chooser
Unloaded plugin 3_libraries_clothes_chooser
Unloading plugin 3_libraries_eye_chooser
Unloaded plugin 3_libraries_eye_chooser
Unloading plugin 3_libraries_eyebrows
Unloaded plugin 3_libraries_eyebrows
Unloading plugin 3_libraries_eyelashes
Unloaded plugin 3_libraries_eyelashes
Unloading plugin 3_libraries_material_chooser
Unloaded plugin 3_libraries_material_chooser
Unloading plugin 3_libraries_polygon_hair_chooser
Unloaded plugin 3_libraries_polygon_hair_chooser
Unloading plugin 3_libraries_pose
Unloaded plugin 3_libraries_pose
Unloading plugin 3_libraries_proxy_chooser
Unloaded plugin 3_libraries_proxy_chooser
Unloading plugin 3_libraries_skeleton
Unloaded plugin 3_libraries_skeleton
Unloading plugin 3_libraries_teeth
Unloaded plugin 3_libraries_teeth
Unloading plugin 3_libraries_tongue
Unloaded plugin 3_libraries_tongue
Unloading plugin 4_rendering_9_viewer
Unloaded plugin 4_rendering_9_viewer
Unloading plugin 4_rendering_opengl
Unloaded plugin 4_rendering_opengl
Unloading plugin 4_rendering_scene
Unloaded plugin 4_rendering_scene
Unloading plugin 5_settings_0_settings
Unloaded plugin 5_settings_0_settings
Unloading plugin 5_settings_mouse
Unloaded plugin 5_settings_mouse
Unloading plugin 5_settings_shortcuts
Unloaded plugin 5_settings_shortcuts
Unloading plugin 5_settings_userplugins
Unloaded plugin 5_settings_userplugins
Unloading plugin 6_help
Unloaded plugin 6_help
Unloading plugin 7_data
Unloaded plugin 7_data
Unloading plugin 7_example
Unloaded plugin 7_example
Unloading plugin 7_expression_mixer
Unloaded plugin 7_expression_mixer
Unloading plugin 7_logging
Unloaded plugin 7_logging
Unloading plugin 7_material_editor
Unloaded plugin 7_material_editor
Unloading plugin 7_profile
Unloaded plugin 7_profile
Unloading plugin 7_save_targets
Unloaded plugin 7_save_targets
Unloading plugin 7_scene_editor
Unloaded plugin 7_scene_editor
Unloading plugin 7_scripting
Unloaded plugin 7_scripting
Unloading plugin 7_shell
Unloaded plugin 7_shell
Unloading plugin 7_targets
Unloaded plugin 7_targets
Unloading plugin 8_asset_downloader
Unloaded plugin 8_asset_downloader
Unloading plugin 8_server_socket
Unloaded plugin 8_server_socket
Unloading plugin 9_export_bvh
Unloaded plugin 9_export_bvh
Unloading plugin 9_export_collada
Unloaded plugin 9_export_collada
Unloading plugin 9_export_fbx
Unloaded plugin 9_export_fbx
Unloading plugin 9_export_light
Unloaded plugin 9_export_light
Unloading plugin 9_export_obj
Unloaded plugin 9_export_obj
Unloading plugin 9_export_ogre
Unloaded plugin 9_export_ogre
Unloading plugin 9_export_stl
Unloaded plugin 9_export_stl
Unloading plugin 9_export_uvmap
Unloaded plugin 9_export_uvmap
Unloading plugin 9_massproduce
Unloaded plugin 9_massproduce
dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>])
dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>])
dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>])
dict_keys([<class 'numpy.ndarray'>, <class 'ctypes.c_void_p'>, <class 'bytes'>, <class 'OpenGL.converters.c_int_Array_1'>])
Segmentation fault

rwbaer@Cyber-Tower:~/makehuman/makehuman$

The makehuman.log file:

[2022-07-09 15:42:23,328] log.py->message():118 -- MESSAGE -- Initialized logging
[2022-07-09 15:42:23,332] log.py->debug():97 -- DEBUG -- VERSION: master:7378f194
[2022-07-09 15:42:23,332] log.py->debug():97 -- DEBUG -- SHORT VERSION: alpha
[2022-07-09 15:42:23,332] log.py->debug():97 -- DEBUG -- LONG VERSION: 1.2.1 alpha (master:7378f194)
[2022-07-09 15:42:23,332] log.py->debug():97 -- DEBUG -- BASEMESH VERSION: hm08
[2022-07-09 15:42:23,332] log.py->debug():97 -- DEBUG -- IS BUILT (FROZEN): No
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- IS RELEASE VERSION: No
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- DEFAULT ENCODING: utf-8
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- FILESYSTEM ENCODING: utf-8
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- STDOUT ENCODING: utf-8
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- LOCALE PREFERRED ENCODING: UTF-8
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- WORKING DIRECTORY: /home/rwbaer/makehuman/makehuman
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- HOME LOCATION: /home/rwbaer
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- PYTHON PATH: ./:./lib:./apps:./shared:./apps/gui:./core:/home/rwbaer/makehuman/makehuman:/usr/lib/python310.zip:/usr/lib/python3.10:/usr/lib/python3.10/lib-dynload:/usr/local/lib/python3.10/dist-packages:/usr/lib/python3/dist-packages
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- DLL PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/usr/lib/wsl/lib:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.7/libnvvp:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.6/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.6/libnvvp:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.5/bin:/mnt/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v11.5/libnvvp:/mnt/c/Program Files/Microsoft/jdk-11.0.12.7-hotspot/bin:/mnt/c/WINDOWS/system32:/mnt/c/WINDOWS:/mnt/c/WINDOWS/System32/Wbem:/mnt/c/WINDOWS/System32/WindowsPowerShell/v1.0/:/mnt/c/WINDOWS/System32/OpenSSH/:/mnt/c/Program Files/dotnet/:/mnt/d/Program Files/ffmpeg-2021-04-07-git-c06465a70b-full_build/bin:/mnt/c/Program Files/NVIDIA Corporation/NVIDIA NvDLISR:/mnt/c/Program Files (x86)/NVIDIA Corporation/PhysX/Common:/mnt/c/Program Files/Microsoft SQL Server/150/Tools/Binn/:/mnt/c/Program Files/Microsoft SQL Server/Client SDK/ODBC/170/Tools/Binn/:/mnt/c/Program Files/SlikSvn/bin:/mnt/c/Program Files/Git/cmd:/mnt/c/Program Files/CMake/bin:/mnt/c/Program Files/Docker/Docker/resources/bin:/mnt/c/ProgramData/DockerDesktop/version-bin:/mnt/c/Program Files/NVIDIA Corporation/Nsight Compute 2022.2.0/:/mnt/c/WINDOWS/system32:/mnt/c/WINDOWS:/mnt/c/WINDOWS/System32/Wbem:/mnt/c/WINDOWS/System32/WindowsPowerShell/v1.0/:/mnt/c/WINDOWS/System32/OpenSSH/:/mnt/c/Program Files/PowerShell/7/:/mnt/c/Users/rbaer/AppData/Local/Microsoft/WindowsApps:/mnt/c/Users/rbaer/AppData/Local/Programs/Microsoft VS Code/bin:/mnt/c/Users/rbaer/.dotnet/tools:/mnt/c/Users/rbaer/AppData/Local/GitHubDesktop/bin:/snap/bin
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- SYS.VERSION: 3.10.4 (main, Apr  2 2022, 09:04:19) [GCC 11.2.0]
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- SYS.PLATFORM: linux
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- SYS.EXECUTABLE: /usr/bin/python3
[2022-07-09 15:42:23,333] log.py->debug():97 -- DEBUG -- PLATFORM.MACHINE: x86_64
[2022-07-09 15:42:23,334] log.py->debug():97 -- DEBUG -- PLATFORM.PROCESSOR: x86_64
[2022-07-09 15:42:23,334] log.py->debug():97 -- DEBUG -- PLATFORM.UNAME.RELEASE: 5.10.102.1-microsoft-standard-WSL2
[2022-07-09 15:42:23,365] log.py->debug():97 -- DEBUG -- PLATFORM.LINUX_DISTRIBUTION: Ubuntu 22.04 Jammy Jellyfish
[2022-07-09 15:42:23,407] log.py->debug():97 -- DEBUG -- NUMPY.VERSION: 1.21.5
[2022-07-09 15:42:23,412] ctypesloader.py->_loadLibraryPosix():65 -- DEBUG -- Loaded libGL.so => libGL.so.1 <CDLL 'libGL.so.1', handle 557f33517d30 at 0x7eff1b75dd20>
[2022-07-09 15:42:23,412] acceleratesupport.py-><module>():17 -- MESSAGE -- No OpenGL_accelerate module loaded: No module named 'OpenGL_accelerate'
[2022-07-09 15:42:23,415] ctypesloader.py->_loadLibraryPosix():65 -- DEBUG -- Loaded libGLU.so => libGLU.so.1 <CDLL 'libGLU.so.1', handle 557f3353eff0 at 0x7eff1b75dde0>
[2022-07-09 15:42:23,505] log.py->debug():97 -- DEBUG -- QT.VERSION: 5.15.3
[2022-07-09 15:42:23,505] log.py->debug():97 -- DEBUG -- QT.JPG_SUPPORT: supported
[2022-07-09 15:42:23,505] log.py->debug():97 -- DEBUG -- QT.SVG_SUPPORT: supported
[2022-07-09 15:42:23,506] log.py->debug():97 -- DEBUG -- QT.PLUGIN_PATH: /usr/lib/x86_64-linux-gnu/qt5/plugins:/usr/bin
[2022-07-09 15:42:23,506] log.py->debug():97 -- DEBUG -- QT.PLUGIN_PATH_ENV: 
[2022-07-09 15:42:23,506] log.py->debug():97 -- DEBUG -- QT.CONF: NOT PRESENT
[2022-07-09 15:42:23,739] log.py->debug():97 -- DEBUG -- PYOPENGL.VERSION: 3.1.5
[2022-07-09 15:42:23,739] log.py->debug():97 -- DEBUG -- NOSHADERS: not set
[2022-07-09 15:42:23,739] log.py->debug():97 -- DEBUG -- NOSAMPLEBUFFERS: not set
[2022-07-09 15:42:23,740] log.py->debug():97 -- DEBUG -- GL.VENDOR: Microsoft Corporation
[2022-07-09 15:42:23,740] log.py->debug():97 -- DEBUG -- GL.RENDERER: D3D12 (NVIDIA GeForce RTX 2060 SUPER)
[2022-07-09 15:42:23,740] log.py->debug():97 -- DEBUG -- GL.VERSION: 3.3 (Compatibility Profile) Mesa 22.0.1
[2022-07-09 15:42:23,740] log.py->debug():97 -- DEBUG -- 3.30
[2022-07-09 15:42:23,740] log.py->debug():97 -- DEBUG -- GLSL.VERSION: 3.30
[2022-07-09 15:42:23,742] log.py->debug():97 -- DEBUG -- GL.EXTENSION: GL_ARB_multisample not available (0x samples)
[2022-07-09 15:42:23,743] log.py->debug():97 -- DEBUG -- Creating new texture for image data/textures/texture_notfound.png.
[2022-07-09 15:42:23,745] log.py->debug():97 -- DEBUG -- GL.EXTENSION: GL_ARB_texture_non_power_of_two enabled
[2022-07-09 15:42:23,747] log.py->debug():97 -- DEBUG -- initTexture: 256, 256, False
[2022-07-09 15:42:23,762] log.py->debug():97 -- DEBUG -- Setting language to english
[2022-07-09 15:42:23,762] log.py->debug():97 -- DEBUG -- Setting language to english
[2022-07-09 15:42:23,763] log.py->message():118 -- MESSAGE -- Initializing default theme first.
[2022-07-09 15:42:23,763] log.py->message():118 -- MESSAGE -- Theme default version 1.2.0
[2022-07-09 15:42:23,763] log.py->debug():97 -- DEBUG -- Loaded theme data/themes/default.mht
[2022-07-09 15:42:23,763] log.py->debug():97 -- DEBUG -- Using Qt system style fusion
[2022-07-09 15:42:23,873] log.py->message():118 -- MESSAGE -- Loading human
[2022-07-09 15:42:23,875] log.py->message():118 -- MESSAGE -- compiled file missing: data/3dobjs/base.npz
[2022-07-09 15:42:23,876] log.py->warning():104 -- WARNING -- Problem loading binary mesh: ('compiled file missing: %s', 'data/3dobjs/base.npz')
[2022-07-09 15:42:23,878] log.py->debug():97 -- DEBUG -- Loading ASCII mesh data/3dobjs/base.obj.
[2022-07-09 15:42:24,194] log.py->debug():97 -- DEBUG -- Calculated maximum number of faces for one vertex: 5
[2022-07-09 15:42:24,850] log.py->debug():97 -- DEBUG -- Calculated maximum number of poles for one vertex: 5
[2022-07-09 15:42:24,918] log.py->debug():97 -- DEBUG -- Not writing compiled meshes to system paths (data/3dobjs/base.npz).
[2022-07-09 15:42:24,921] log.py->debug():97 -- DEBUG -- Loading material from file data/skins/default.mhmat
[2022-07-09 15:42:24,924] log.py->debug():97 -- DEBUG -- Shader: adding built-in uniform b'gl_NormalMatrix'
[2022-07-09 15:42:24,924] log.py->debug():97 -- DEBUG -- Shader: adding built-in uniform b'gl_ModelViewProjectionMatrix'
[2022-07-09 15:42:24,924] log.py->debug():97 -- DEBUG -- VectorUniform(AdditiveShading) = [0.]
[2022-07-09 15:42:24,924] log.py->debug():97 -- DEBUG -- VectorUniform(AdditiveShading) = [0.]
[2022-07-09 15:42:25,008] log.py->message():118 -- MESSAGE -- Loaded vertex weights MakeHuman weights from file /home/rwbaer/makehuman/makehuman/data/rigs/default_weights.mhw
[2022-07-09 15:42:25,163] log.py->message():118 -- MESSAGE -- Loading scene
[2022-07-09 15:42:25,165] log.py->debug():97 -- DEBUG -- Loading scene file: data/scenes/default.mhscene
[2022-07-09 15:42:25,165] log.py->message():118 -- MESSAGE -- Loading main GUI
[2022-07-09 15:42:25,167] log.py->debug():97 -- DEBUG -- Assigning setting loaddir value /home/rwbaer/makehuman/v1py3/models that was loaded before the setting was declared.
[2022-07-09 15:42:25,169] log.py->debug():97 -- DEBUG -- Assigning setting savedir value /home/rwbaer/makehuman/v1py3/models that was loaded before the setting was declared.
[2022-07-09 15:42:25,171] log.py->debug():97 -- DEBUG -- Assigning setting exportdir value /home/rwbaer/makehuman/v1py3/exports that was loaded before the setting was declared.
[2022-07-09 15:42:25,173] log.py->message():118 -- MESSAGE -- Loading plugins
[2022-07-09 15:42:25,175] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_0_modifiers
[2022-07-09 15:42:25,177] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_0_modifiers
[2022-07-09 15:42:25,178] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_0_modifiers
[2022-07-09 15:42:25,179] log.py->debug():97 -- DEBUG -- Loading modifiers from data/modifiers/modeling_modifiers.json
[2022-07-09 15:42:25,179] log.py->debug():97 -- DEBUG -- Attempting to load targets from NPZ file.
[2022-07-09 15:42:25,179] log.py->debug():97 -- DEBUG -- Could not load targets from NPZ, loading individual files from data (Error message: ('Could not load load targets from npz archive. Archive file %s not found.', 'data/targets.npz'))
[2022-07-09 15:42:25,200] log.py->debug():97 -- DEBUG -- 1280 targets loaded from .target files.
[2022-07-09 15:42:25,601] log.py->message():118 -- MESSAGE -- Loaded 249 modifiers from file data/modifiers/modeling_modifiers.json
[2022-07-09 15:42:25,603] log.py->message():118 -- MESSAGE -- Loaded 249 modifier descriptions from file data/modifiers/modeling_modifiers_desc.json
[2022-07-09 15:42:25,740] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_0_modifiers
[2022-07-09 15:42:25,745] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_1_bodyshapes
[2022-07-09 15:42:25,746] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_1_bodyshapes
[2022-07-09 15:42:25,747] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_1_bodyshapes
[2022-07-09 15:42:25,747] log.py->debug():97 -- DEBUG -- Loading modifiers from data/modifiers/bodyshapes_modifiers.json
[2022-07-09 15:42:25,747] log.py->message():118 -- MESSAGE -- Loaded 22 modifiers from file data/modifiers/bodyshapes_modifiers.json
[2022-07-09 15:42:25,748] log.py->message():118 -- MESSAGE -- Loaded 22 modifier descriptions from file data/modifiers/bodyshapes_modifiers_desc.json
[2022-07-09 15:42:25,762] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_1_bodyshapes
[2022-07-09 15:42:25,763] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_8_random
[2022-07-09 15:42:25,764] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_8_random
[2022-07-09 15:42:25,764] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_8_random
[2022-07-09 15:42:25,766] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_8_random
[2022-07-09 15:42:25,767] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_9_custom_targets
[2022-07-09 15:42:25,768] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_9_custom_targets
[2022-07-09 15:42:25,769] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_9_custom_targets
[2022-07-09 15:42:25,771] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_9_custom_targets
[2022-07-09 15:42:25,771] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_a_measurement
[2022-07-09 15:42:25,772] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_a_measurement
[2022-07-09 15:42:25,773] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_a_measurement
[2022-07-09 15:42:25,773] log.py->debug():97 -- DEBUG -- Loading modifiers from data/modifiers/measurement_modifiers.json
[2022-07-09 15:42:25,774] log.py->message():118 -- MESSAGE -- Loaded 20 modifiers from file data/modifiers/measurement_modifiers.json
[2022-07-09 15:42:25,774] log.py->message():118 -- MESSAGE -- Loaded 20 modifier descriptions from file data/modifiers/measurement_modifiers_desc.json
[2022-07-09 15:42:25,787] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_a_measurement
[2022-07-09 15:42:25,789] log.py->message():118 -- MESSAGE -- Importing plugin 0_modeling_background
[2022-07-09 15:42:25,790] log.py->message():118 -- MESSAGE -- Imported plugin 0_modeling_background
[2022-07-09 15:42:25,791] log.py->message():118 -- MESSAGE -- Loading plugin 0_modeling_background
[2022-07-09 15:42:25,798] log.py->message():118 -- MESSAGE -- Loaded plugin 0_modeling_background
[2022-07-09 15:42:25,799] log.py->message():118 -- MESSAGE -- Importing plugin 1_convert_model_tags
[2022-07-09 15:42:25,800] log.py->message():118 -- MESSAGE -- Imported plugin 1_convert_model_tags
[2022-07-09 15:42:25,801] log.py->message():118 -- MESSAGE -- Loading plugin 1_convert_model_tags
[2022-07-09 15:42:25,802] log.py->message():118 -- MESSAGE -- Loaded plugin 1_convert_model_tags
[2022-07-09 15:42:25,802] log.py->message():118 -- MESSAGE -- Importing plugin 1_mhapi
[2022-07-09 15:42:25,804] log.py->message():118 -- MESSAGE -- Imported plugin 1_mhapi
[2022-07-09 15:42:25,804] log.py->message():118 -- MESSAGE -- Loading plugin 1_mhapi
[2022-07-09 15:42:25,817] log.py->message():118 -- MESSAGE -- Loaded plugin 1_mhapi
[2022-07-09 15:42:25,818] log.py->message():118 -- MESSAGE -- Importing plugin 2_foot_posing
[2022-07-09 15:42:25,820] log.py->message():118 -- MESSAGE -- Imported plugin 2_foot_posing
[2022-07-09 15:42:25,821] log.py->message():118 -- MESSAGE -- Loading plugin 2_foot_posing
[2022-07-09 15:42:25,821] log.py->message():118 -- MESSAGE -- Loaded plugin 2_foot_posing
[2022-07-09 15:42:25,822] log.py->message():118 -- MESSAGE -- Importing plugin 2_posing_expression
[2022-07-09 15:42:25,823] log.py->message():118 -- MESSAGE -- Imported plugin 2_posing_expression
[2022-07-09 15:42:25,824] log.py->message():118 -- MESSAGE -- Loading plugin 2_posing_expression
[2022-07-09 15:42:25,825] log.py->message():118 -- MESSAGE -- Loaded plugin 2_posing_expression
[2022-07-09 15:42:25,826] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_animation
[2022-07-09 15:42:25,827] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_animation
[2022-07-09 15:42:25,828] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_animation
[2022-07-09 15:42:25,833] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_animation
[2022-07-09 15:42:25,834] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_clothes_chooser
[2022-07-09 15:42:25,835] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_clothes_chooser
[2022-07-09 15:42:25,836] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_clothes_chooser
[2022-07-09 15:42:25,839] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_clothes_chooser
[2022-07-09 15:42:25,840] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_eye_chooser
[2022-07-09 15:42:25,840] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_eye_chooser
[2022-07-09 15:42:25,841] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_eye_chooser
[2022-07-09 15:42:25,843] log.py->debug():97 -- DEBUG -- According to mh.getSysDataPath here's high poly eyes data/eyes/high-poly/high-poly.mhclo
[2022-07-09 15:42:25,843] log.py->message():118 -- MESSAGE -- Selecting proxy file "data/eyes/high-poly/high-poly.mhclo" from eyes library.
[2022-07-09 15:42:25,844] log.py->message():118 -- MESSAGE -- compiled proxy file missing: data/eyes/high-poly/high-poly.mhpxy
[2022-07-09 15:42:25,844] log.py->warning():104 -- WARNING -- Problem loading binary proxy: ('compiled proxy file missing: %s', 'data/eyes/high-poly/high-poly.mhpxy')
[2022-07-09 15:42:25,845] log.py->debug():97 -- DEBUG -- Loading proxy file: data/eyes/high-poly/high-poly.mhclo.
[2022-07-09 15:42:25,845] log.py->debug():97 -- DEBUG -- Loading material from file /home/rwbaer/makehuman/makehuman/data/eyes/materials/brown.mhmat
[2022-07-09 15:42:25,848] log.py->debug():97 -- DEBUG -- Shader: adding built-in uniform b'gl_NormalMatrix'
[2022-07-09 15:42:25,848] log.py->debug():97 -- DEBUG -- Shader: adding built-in uniform b'gl_ModelViewProjectionMatrix'
[2022-07-09 15:42:25,849] log.py->debug():97 -- DEBUG -- VectorUniform(AdditiveShading) = [0.]
[2022-07-09 15:42:25,849] log.py->debug():97 -- DEBUG -- VectorUniform(AdditiveShading) = [0.]
[2022-07-09 15:42:25,855] log.py->debug():97 -- DEBUG -- Not writing compiled proxies to system paths (data/eyes/high-poly/high-poly.mhpxy).
[2022-07-09 15:42:25,856] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz
[2022-07-09 15:42:25,857] log.py->warning():104 -- WARNING -- Problem loading binary mesh: ('compiled file missing: %s', '/home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz')
[2022-07-09 15:42:25,857] log.py->debug():97 -- DEBUG -- Loading ASCII mesh /home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.obj.
[2022-07-09 15:42:25,874] log.py->debug():97 -- DEBUG -- Calculated maximum number of faces for one vertex: 4
[2022-07-09 15:42:25,910] log.py->debug():97 -- DEBUG -- Calculated maximum number of poles for one vertex: 4
[2022-07-09 15:42:25,912] log.py->debug():97 -- DEBUG -- Not writing compiled meshes to system paths (/home/rwbaer/makehuman/makehuman/data/eyes/high-poly/high-poly.npz).
[2022-07-09 15:42:25,913] log.py->debug():97 -- DEBUG -- remapping weights for proxy HighPolyEyes
[2022-07-09 15:42:25,951] log.py->debug():97 -- DEBUG -- remapping weights for HighPolyEyes took 0.03139 seconds
[2022-07-09 15:42:25,975] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_eye_chooser
[2022-07-09 15:42:25,976] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_eyebrows
[2022-07-09 15:42:25,976] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_eyebrows
[2022-07-09 15:42:25,977] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_eyebrows
[2022-07-09 15:42:25,979] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_eyebrows
[2022-07-09 15:42:25,980] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_eyelashes
[2022-07-09 15:42:25,981] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_eyelashes
[2022-07-09 15:42:25,981] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_eyelashes
[2022-07-09 15:42:25,983] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_eyelashes
[2022-07-09 15:42:25,984] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_material_chooser
[2022-07-09 15:42:25,985] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_material_chooser
[2022-07-09 15:42:25,985] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_material_chooser
[2022-07-09 15:42:25,988] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_material_chooser
[2022-07-09 15:42:25,989] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:42:25,990] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:42:25,990] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:42:25,992] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:42:25,993] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_pose
[2022-07-09 15:42:25,993] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_pose
[2022-07-09 15:42:25,994] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_pose
[2022-07-09 15:42:25,996] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_pose
[2022-07-09 15:42:25,997] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_proxy_chooser
[2022-07-09 15:42:25,997] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_proxy_chooser
[2022-07-09 15:42:25,998] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_proxy_chooser
[2022-07-09 15:42:25,999] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_proxy_chooser
[2022-07-09 15:42:26,000] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_skeleton
[2022-07-09 15:42:26,001] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_skeleton
[2022-07-09 15:42:26,002] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_skeleton
[2022-07-09 15:42:26,006] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_skeleton
[2022-07-09 15:42:26,007] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_teeth
[2022-07-09 15:42:26,007] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_teeth
[2022-07-09 15:42:26,008] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_teeth
[2022-07-09 15:42:26,010] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_teeth
[2022-07-09 15:42:26,010] log.py->message():118 -- MESSAGE -- Importing plugin 3_libraries_tongue
[2022-07-09 15:42:26,011] log.py->message():118 -- MESSAGE -- Imported plugin 3_libraries_tongue
[2022-07-09 15:42:26,012] log.py->message():118 -- MESSAGE -- Loading plugin 3_libraries_tongue
[2022-07-09 15:42:26,013] log.py->message():118 -- MESSAGE -- Loaded plugin 3_libraries_tongue
[2022-07-09 15:42:26,014] log.py->message():118 -- MESSAGE -- Importing plugin 4_rendering_9_viewer
[2022-07-09 15:42:26,014] log.py->message():118 -- MESSAGE -- Imported plugin 4_rendering_9_viewer
[2022-07-09 15:42:26,015] log.py->message():118 -- MESSAGE -- Loading plugin 4_rendering_9_viewer
[2022-07-09 15:42:26,016] log.py->message():118 -- MESSAGE -- Loaded plugin 4_rendering_9_viewer
[2022-07-09 15:42:26,017] log.py->message():118 -- MESSAGE -- Importing plugin 4_rendering_opengl
[2022-07-09 15:42:26,018] log.py->message():118 -- MESSAGE -- Imported plugin 4_rendering_opengl
[2022-07-09 15:42:26,018] log.py->message():118 -- MESSAGE -- Loading plugin 4_rendering_opengl
[2022-07-09 15:42:26,020] log.py->debug():97 -- DEBUG -- Assigning setting rendering_width value 800 that was loaded before the setting was declared.
[2022-07-09 15:42:26,020] log.py->debug():97 -- DEBUG -- Assigning setting rendering_height value 600 that was loaded before the setting was declared.
[2022-07-09 15:42:26,020] log.py->debug():97 -- DEBUG -- Assigning setting GL_RENDERER_SSS value False that was loaded before the setting was declared.
[2022-07-09 15:42:26,020] log.py->debug():97 -- DEBUG -- Assigning setting GL_RENDERER_AA value True that was loaded before the setting was declared.
[2022-07-09 15:42:26,022] log.py->message():118 -- MESSAGE -- Loaded plugin 4_rendering_opengl
[2022-07-09 15:42:26,023] log.py->message():118 -- MESSAGE -- Importing plugin 4_rendering_scene
[2022-07-09 15:42:26,024] log.py->message():118 -- MESSAGE -- Imported plugin 4_rendering_scene
[2022-07-09 15:42:26,024] log.py->message():118 -- MESSAGE -- Loading plugin 4_rendering_scene
[2022-07-09 15:42:26,025] mhmain.py->addSetting():353 -- NOTICE -- Setting rendering_width is already declared. Adding it again has no effect.
[2022-07-09 15:42:26,026] mhmain.py->addSetting():353 -- NOTICE -- Setting rendering_height is already declared. Adding it again has no effect.
[2022-07-09 15:42:26,027] log.py->message():118 -- MESSAGE -- Loaded plugin 4_rendering_scene
[2022-07-09 15:42:26,028] log.py->message():118 -- MESSAGE -- Importing plugin 5_settings_0_settings
[2022-07-09 15:42:26,028] log.py->message():118 -- MESSAGE -- Imported plugin 5_settings_0_settings
[2022-07-09 15:42:26,029] log.py->message():118 -- MESSAGE -- Loading plugin 5_settings_0_settings
[2022-07-09 15:42:26,151] log.py->debug():97 -- DEBUG -- Setting language to english
[2022-07-09 15:42:26,152] log.py->message():118 -- MESSAGE -- Theme makehuman version 1.2.0
[2022-07-09 15:42:26,155] log.py->debug():97 -- DEBUG -- Loaded theme data/themes/makehuman.mht
[2022-07-09 15:42:26,618] log.py->debug():97 -- DEBUG -- Loaded Qt style data/themes/makehuman.qss
[2022-07-09 15:42:26,630] log.py->message():118 -- MESSAGE -- Loaded plugin 5_settings_0_settings
[2022-07-09 15:42:26,632] log.py->message():118 -- MESSAGE -- Importing plugin 5_settings_mouse
[2022-07-09 15:42:26,632] log.py->message():118 -- MESSAGE -- Imported plugin 5_settings_mouse
[2022-07-09 15:42:26,633] log.py->message():118 -- MESSAGE -- Loading plugin 5_settings_mouse
[2022-07-09 15:42:26,636] log.py->message():118 -- MESSAGE -- Loaded plugin 5_settings_mouse
[2022-07-09 15:42:26,637] log.py->message():118 -- MESSAGE -- Importing plugin 5_settings_shortcuts
[2022-07-09 15:42:26,638] log.py->message():118 -- MESSAGE -- Imported plugin 5_settings_shortcuts
[2022-07-09 15:42:26,638] log.py->message():118 -- MESSAGE -- Loading plugin 5_settings_shortcuts
[2022-07-09 15:42:26,651] log.py->message():118 -- MESSAGE -- Loaded plugin 5_settings_shortcuts
[2022-07-09 15:42:26,653] log.py->message():118 -- MESSAGE -- Importing plugin 5_settings_userplugins
[2022-07-09 15:42:26,654] log.py->message():118 -- MESSAGE -- Imported plugin 5_settings_userplugins
[2022-07-09 15:42:26,654] log.py->message():118 -- MESSAGE -- Loading plugin 5_settings_userplugins
[2022-07-09 15:42:26,658] log.py->message():118 -- MESSAGE -- Loaded plugin 5_settings_userplugins
[2022-07-09 15:42:26,659] log.py->message():118 -- MESSAGE -- Importing plugin 6_help
[2022-07-09 15:42:26,661] log.py->message():118 -- MESSAGE -- Imported plugin 6_help
[2022-07-09 15:42:26,661] log.py->message():118 -- MESSAGE -- Loading plugin 6_help
[2022-07-09 15:42:26,666] log.py->message():118 -- MESSAGE -- Loaded plugin 6_help
[2022-07-09 15:42:26,667] log.py->message():118 -- MESSAGE -- Importing plugin 7_data
[2022-07-09 15:42:26,669] log.py->message():118 -- MESSAGE -- Imported plugin 7_data
[2022-07-09 15:42:26,670] log.py->message():118 -- MESSAGE -- Loading plugin 7_data
[2022-07-09 15:42:26,676] log.py->message():118 -- MESSAGE -- Loaded plugin 7_data
[2022-07-09 15:42:26,677] log.py->message():118 -- MESSAGE -- Importing plugin 7_example
[2022-07-09 15:42:26,678] log.py->message():118 -- MESSAGE -- Imported plugin 7_example
[2022-07-09 15:42:26,679] log.py->message():118 -- MESSAGE -- Loading plugin 7_example
[2022-07-09 15:42:26,684] log.py->message():118 -- MESSAGE -- Loaded plugin 7_example
[2022-07-09 15:42:26,686] log.py->message():118 -- MESSAGE -- Importing plugin 7_expression_mixer
[2022-07-09 15:42:26,687] log.py->message():118 -- MESSAGE -- Imported plugin 7_expression_mixer
[2022-07-09 15:42:26,688] log.py->message():118 -- MESSAGE -- Loading plugin 7_expression_mixer
[2022-07-09 15:42:26,694] log.py->message():118 -- MESSAGE -- Loaded plugin 7_expression_mixer
[2022-07-09 15:42:26,695] log.py->message():118 -- MESSAGE -- Importing plugin 7_logging
[2022-07-09 15:42:26,696] log.py->message():118 -- MESSAGE -- Imported plugin 7_logging
[2022-07-09 15:42:26,696] log.py->message():118 -- MESSAGE -- Loading plugin 7_logging
[2022-07-09 15:42:26,701] log.py->message():118 -- MESSAGE -- Loaded plugin 7_logging
[2022-07-09 15:42:26,702] log.py->message():118 -- MESSAGE -- Importing plugin 7_material_editor
[2022-07-09 15:42:26,704] log.py->message():118 -- MESSAGE -- Imported plugin 7_material_editor
[2022-07-09 15:42:26,705] log.py->message():118 -- MESSAGE -- Loading plugin 7_material_editor
[2022-07-09 15:42:26,712] log.py->message():118 -- MESSAGE -- Loaded plugin 7_material_editor
[2022-07-09 15:42:26,713] log.py->message():118 -- MESSAGE -- Importing plugin 7_profile
[2022-07-09 15:42:26,715] log.py->message():118 -- MESSAGE -- Imported plugin 7_profile
[2022-07-09 15:42:26,716] log.py->message():118 -- MESSAGE -- Loading plugin 7_profile
[2022-07-09 15:42:26,722] log.py->message():118 -- MESSAGE -- Loaded plugin 7_profile
[2022-07-09 15:42:26,724] log.py->message():118 -- MESSAGE -- Importing plugin 7_save_targets
[2022-07-09 15:42:26,725] log.py->message():118 -- MESSAGE -- Imported plugin 7_save_targets
[2022-07-09 15:42:26,726] log.py->message():118 -- MESSAGE -- Loading plugin 7_save_targets
[2022-07-09 15:42:26,731] log.py->message():118 -- MESSAGE -- Loaded plugin 7_save_targets
[2022-07-09 15:42:26,733] log.py->message():118 -- MESSAGE -- Importing plugin 7_scene_editor
[2022-07-09 15:42:26,734] log.py->message():118 -- MESSAGE -- Imported plugin 7_scene_editor
[2022-07-09 15:42:26,734] log.py->message():118 -- MESSAGE -- Loading plugin 7_scene_editor
[2022-07-09 15:42:26,736] mhmain.py->addSetting():353 -- NOTICE -- Setting rendering_width is already declared. Adding it again has no effect.
[2022-07-09 15:42:26,737] mhmain.py->addSetting():353 -- NOTICE -- Setting rendering_height is already declared. Adding it again has no effect.
[2022-07-09 15:42:26,738] log.py->debug():97 -- DEBUG -- Assigning setting Scene_Editor_FileDlgPath value /home/rwbaer/makehuman/v1py3/data/scenes that was loaded before the setting was declared.
[2022-07-09 15:42:26,741] log.py->message():118 -- MESSAGE -- Loaded plugin 7_scene_editor
[2022-07-09 15:42:26,742] log.py->message():118 -- MESSAGE -- Importing plugin 7_scripting
[2022-07-09 15:42:26,743] log.py->message():118 -- MESSAGE -- Imported plugin 7_scripting
[2022-07-09 15:42:26,745] log.py->message():118 -- MESSAGE -- Loading plugin 7_scripting
[2022-07-09 15:42:26,751] log.py->message():118 -- MESSAGE -- Loaded plugin 7_scripting
[2022-07-09 15:42:26,753] log.py->message():118 -- MESSAGE -- Importing plugin 7_shell
[2022-07-09 15:42:26,755] log.py->message():118 -- MESSAGE -- Imported plugin 7_shell
[2022-07-09 15:42:26,756] log.py->message():118 -- MESSAGE -- Loading plugin 7_shell
[2022-07-09 15:42:26,759] log.py->message():118 -- MESSAGE -- Loaded plugin 7_shell
[2022-07-09 15:42:26,760] log.py->message():118 -- MESSAGE -- Importing plugin 7_targets
[2022-07-09 15:42:26,761] log.py->message():118 -- MESSAGE -- Imported plugin 7_targets
[2022-07-09 15:42:26,762] log.py->message():118 -- MESSAGE -- Loading plugin 7_targets
[2022-07-09 15:42:26,766] log.py->message():118 -- MESSAGE -- Loaded plugin 7_targets
[2022-07-09 15:42:26,767] log.py->message():118 -- MESSAGE -- Importing plugin 8_asset_downloader
[2022-07-09 15:42:26,769] log.py->message():118 -- MESSAGE -- Imported plugin 8_asset_downloader
[2022-07-09 15:42:26,770] log.py->message():118 -- MESSAGE -- Loading plugin 8_asset_downloader
[2022-07-09 15:42:26,816] log.py->message():118 -- MESSAGE -- Loaded plugin 8_asset_downloader
[2022-07-09 15:42:26,819] log.py->message():118 -- MESSAGE -- Importing plugin 8_server_socket
[2022-07-09 15:42:26,821] log.py->message():118 -- MESSAGE -- Imported plugin 8_server_socket
[2022-07-09 15:42:26,822] log.py->message():118 -- MESSAGE -- Loading plugin 8_server_socket
[2022-07-09 15:42:26,826] log.py->message():118 -- MESSAGE -- Loaded plugin 8_server_socket
[2022-07-09 15:42:26,827] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_bvh
[2022-07-09 15:42:26,829] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_bvh
[2022-07-09 15:42:26,829] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_bvh
[2022-07-09 15:42:26,831] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_bvh
[2022-07-09 15:42:26,831] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_collada
[2022-07-09 15:42:26,832] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_collada
[2022-07-09 15:42:26,833] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_collada
[2022-07-09 15:42:26,835] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_collada
[2022-07-09 15:42:26,837] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_fbx
[2022-07-09 15:42:26,837] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_fbx
[2022-07-09 15:42:26,838] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_fbx
[2022-07-09 15:42:26,839] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_fbx
[2022-07-09 15:42:26,840] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_light
[2022-07-09 15:42:26,841] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_light
[2022-07-09 15:42:26,841] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_light
[2022-07-09 15:42:26,842] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_light
[2022-07-09 15:42:26,843] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_obj
[2022-07-09 15:42:26,844] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_obj
[2022-07-09 15:42:26,844] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_obj
[2022-07-09 15:42:26,845] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_obj
[2022-07-09 15:42:26,846] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_ogre
[2022-07-09 15:42:26,847] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_ogre
[2022-07-09 15:42:26,848] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_ogre
[2022-07-09 15:42:26,849] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_ogre
[2022-07-09 15:42:26,850] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_stl
[2022-07-09 15:42:26,850] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_stl
[2022-07-09 15:42:26,851] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_stl
[2022-07-09 15:42:26,852] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_stl
[2022-07-09 15:42:26,853] log.py->message():118 -- MESSAGE -- Importing plugin 9_export_uvmap
[2022-07-09 15:42:26,854] log.py->message():118 -- MESSAGE -- Imported plugin 9_export_uvmap
[2022-07-09 15:42:26,855] log.py->message():118 -- MESSAGE -- Loading plugin 9_export_uvmap
[2022-07-09 15:42:26,856] log.py->message():118 -- MESSAGE -- Loaded plugin 9_export_uvmap
[2022-07-09 15:42:26,856] log.py->message():118 -- MESSAGE -- Importing plugin 9_massproduce
[2022-07-09 15:42:26,858] log.py->message():118 -- MESSAGE -- Imported plugin 9_massproduce
[2022-07-09 15:42:26,858] log.py->message():118 -- MESSAGE -- Loading plugin 9_massproduce
[2022-07-09 15:42:26,943] log.py->message():118 -- MESSAGE -- Loaded plugin 9_massproduce
[2022-07-09 15:42:26,947] log.py->message():118 -- MESSAGE -- Loading GUI
[2022-07-09 15:42:26,964] log.py->debug():97 -- DEBUG -- showing category Modelling
[2022-07-09 15:42:26,964] log.py->debug():97 -- DEBUG -- showing task Macro modelling
[2022-07-09 15:42:27,087] log.py->message():118 -- MESSAGE -- Loading theme
[2022-07-09 15:42:27,088] log.py->message():118 -- MESSAGE -- Theme makehuman version 1.2.0
[2022-07-09 15:42:27,089] log.py->debug():97 -- DEBUG -- Loaded theme data/themes/makehuman.mht
[2022-07-09 15:42:28,987] log.py->debug():97 -- DEBUG -- Loaded Qt style data/themes/makehuman.qss
[2022-07-09 15:42:28,999] log.py->message():118 -- MESSAGE -- Applying targets
[2022-07-09 15:42:29,041] log.py->message():118 -- MESSAGE -- no compressed targets found
[2022-07-09 15:42:29,042] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/african-female-young.target
[2022-07-09 15:42:29,072] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/african-male-young.target
[2022-07-09 15:42:29,101] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/asian-female-young.target
[2022-07-09 15:42:29,130] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/asian-male-young.target
[2022-07-09 15:42:29,159] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/caucasian-female-young.target
[2022-07-09 15:42:29,187] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/caucasian-male-young.target
[2022-07-09 15:42:29,216] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/universal-female-young-averagemuscle-averageweight.target
[2022-07-09 15:42:29,217] log.py->message():118 -- MESSAGE -- compiled file missing: /home/rwbaer/makehuman/makehuman/data/targets/macrodetails/universal-male-young-averagemuscle-averageweight.target
[2022-07-09 15:42:29,218] log.py->debug():97 -- DEBUG -- Updating skeleton joint positions
[2022-07-09 15:42:29,265] log.py->debug():97 -- DEBUG -- Done baking animations
[2022-07-09 15:42:29,302] log.py->message():118 -- MESSAGE -- Loading macro targets
[2022-07-09 15:42:29,303] log.py->message():118 -- MESSAGE -- Loading done
[2022-07-09 15:42:29,304] log.py->message():118 -- MESSAGE -- 
[2022-07-09 15:42:29,373] log.py->debug():97 -- DEBUG -- Creating new texture for dynamic image data/litspheres/adaptive_skin_tone.png.
[2022-07-09 15:42:29,387] log.py->debug():97 -- DEBUG -- initTexture: 256, 256, False
[2022-07-09 15:42:29,390] log.py->debug():97 -- DEBUG -- Creating new texture for image /home/rwbaer/makehuman/makehuman/data/eyes/materials/brown_eye.png.
[2022-07-09 15:42:29,436] log.py->debug():97 -- DEBUG -- initTexture: 1024, 1024, False
[2022-07-09 15:42:29,436] log.py->debug():97 -- DEBUG -- Creating new texture for image /home/rwbaer/makehuman/makehuman/data/litspheres/skinmat_eye.png.
[2022-07-09 15:42:29,440] log.py->debug():97 -- DEBUG -- initTexture: 256, 256, False
[2022-07-09 15:42:38,218] log.py->debug():97 -- DEBUG -- hiding category Modelling
[2022-07-09 15:42:38,219] log.py->debug():97 -- DEBUG -- showing category Rendering
[2022-07-09 15:42:38,219] log.py->debug():97 -- DEBUG -- hiding task Macro modelling
[2022-07-09 15:42:38,219] log.py->debug():97 -- DEBUG -- showing task Render
[2022-07-09 15:42:40,811] log.py->message():118 -- MESSAGE -- Rendering at 800x600
[2022-07-09 15:42:40,880] log.py->warning():104 -- WARNING -- Exception during event onClicked
Traceback (most recent call last):
  File "/home/rwbaer/makehuman/makehuman/./core/events3d.py", line 211, in callEvent
    method(event)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/__init__.py", line 125, in onClicked
    mh2opengl.Render(settings)
  File "/home/rwbaer/makehuman/makehuman/plugins/4_rendering_opengl/mh2opengl.py", line 111, in Render
    img = img.resized(width/2, height/2, filter=image.FILTER_BILINEAR)
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 217, in resized
    return Image(data=self.resized_(width, height, filter))
  File "/home/rwbaer/makehuman/makehuman/./lib/image.py", line 213, in resized_
    return image_qt.resized(self, width, height, filter=filter)
  File "/home/rwbaer/makehuman/makehuman/./lib/image_qt.py", line 129, in resized
    qi = qi.scaled(QtCore.QSize(width, height),
TypeError: arguments did not match any overloaded call:
  QSize(): too many arguments
  QSize(int, int): argument 1 has unexpected type 'float'
  QSize(QSize): argument 1 has unexpected type 'float'
[2022-07-09 15:42:50,363] log.py->debug():97 -- DEBUG -- hiding category Rendering
[2022-07-09 15:42:50,364] log.py->debug():97 -- DEBUG -- showing category Files
[2022-07-09 15:42:50,364] log.py->debug():97 -- DEBUG -- hiding task Render
[2022-07-09 15:42:50,364] log.py->debug():97 -- DEBUG -- showing task Load
[2022-07-09 15:43:04,292] log.py->debug():97 -- DEBUG -- hiding category Files
[2022-07-09 15:43:04,292] log.py->debug():97 -- DEBUG -- showing category Modelling
[2022-07-09 15:43:04,297] log.py->debug():97 -- DEBUG -- hiding task Load
[2022-07-09 15:43:04,297] log.py->debug():97 -- DEBUG -- showing task Macro modelling
[2022-07-09 15:43:05,635] log.py->debug():97 -- DEBUG -- hiding category Modelling
[2022-07-09 15:43:05,635] log.py->debug():97 -- DEBUG -- showing category Files
[2022-07-09 15:43:05,635] log.py->debug():97 -- DEBUG -- hiding task Macro modelling
[2022-07-09 15:43:05,635] log.py->debug():97 -- DEBUG -- showing task Load
[2022-07-09 15:43:09,610] qtui.py->stop():736 -- NOTICE -- ABOUT TO STOP APPLICATION
[2022-07-09 15:43:09,615] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_0_modifiers
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_0_modifiers
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_1_bodyshapes
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_1_bodyshapes
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_8_random
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_8_random
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_9_custom_targets
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_9_custom_targets
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_a_measurement
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_a_measurement
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloading plugin 0_modeling_background
[2022-07-09 15:43:09,616] log.py->message():118 -- MESSAGE -- Unloaded plugin 0_modeling_background
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 1_convert_model_tags
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 1_convert_model_tags
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 1_mhapi
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 1_mhapi
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 2_foot_posing
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 2_foot_posing
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 2_posing_expression
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 2_posing_expression
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_animation
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_animation
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_clothes_chooser
[2022-07-09 15:43:09,617] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_clothes_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_eye_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_eye_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_eyebrows
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_eyebrows
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_eyelashes
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_eyelashes
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_material_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_material_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_polygon_hair_chooser
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_pose
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_pose
[2022-07-09 15:43:09,618] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_proxy_chooser
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_proxy_chooser
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_skeleton
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_skeleton
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_teeth
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_teeth
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloading plugin 3_libraries_tongue
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 3_libraries_tongue
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloading plugin 4_rendering_9_viewer
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 4_rendering_9_viewer
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloading plugin 4_rendering_opengl
[2022-07-09 15:43:09,619] log.py->message():118 -- MESSAGE -- Unloaded plugin 4_rendering_opengl
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 4_rendering_scene
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloaded plugin 4_rendering_scene
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 5_settings_0_settings
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloaded plugin 5_settings_0_settings
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 5_settings_mouse
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloaded plugin 5_settings_mouse
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 5_settings_shortcuts
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloaded plugin 5_settings_shortcuts
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 5_settings_userplugins
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloaded plugin 5_settings_userplugins
[2022-07-09 15:43:09,620] log.py->message():118 -- MESSAGE -- Unloading plugin 6_help
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 6_help
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloading plugin 7_data
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_data
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloading plugin 7_example
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_example
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloading plugin 7_expression_mixer
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_expression_mixer
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloading plugin 7_logging
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_logging
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloading plugin 7_material_editor
[2022-07-09 15:43:09,621] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_material_editor
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_profile
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_profile
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_save_targets
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_save_targets
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_scene_editor
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_scene_editor
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_scripting
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_scripting
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_shell
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_shell
[2022-07-09 15:43:09,622] log.py->message():118 -- MESSAGE -- Unloading plugin 7_targets
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloaded plugin 7_targets
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloading plugin 8_asset_downloader
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloaded plugin 8_asset_downloader
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloading plugin 8_server_socket
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloaded plugin 8_server_socket
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_bvh
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_bvh
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_collada
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_collada
[2022-07-09 15:43:09,623] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_fbx
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_fbx
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_light
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_light
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_obj
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_obj
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_ogre
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_ogre
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_stl
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_stl
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_export_uvmap
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_export_uvmap
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloading plugin 9_massproduce
[2022-07-09 15:43:09,624] log.py->message():118 -- MESSAGE -- Unloaded plugin 9_massproduce
kshepherd2013 commented 1 year ago

Thank you Rob and Joel for kindly providing me with your testing data. I was able to reproduce, find and fix the Render tab bugs. The problem was in incorrect initializing of the depth buffer, so that faces that should be hidden were seen, and vice versa. I guess the bug was always there, but that prior to the Qt Widget switch, those code paths were not used. I can generate another pull request if you like, or provide diffs - whichever is easiest for you. Here are my before and after screenshots: render_before_depth_fix render_after_depth_fix

kshepherd2013 commented 1 year ago

I have generated a pull request, it affects four python files in the lib subdirectory

rwbaer commented 1 year ago

The render problem is fixed in my Windows environment. There is still a Python crash which I have opened as a separate issue (#204). That means this issue can remain closed (which i think it is already).