Hey there, I found the reason it was showing up strangely under PySide. It is because the code was using a now deprecated method, on QTableWidgetItem. In the "showAttributes()" method, you need to change this line:
item.setBackgroundColor(QtGui.QColor(40,40,40)) to item.setBackground(QtGui.QBrush(QtGui.QColor(40,40,40))) It was still valid in PyQt4, but in PySide has been changed. For me, I got a warning printing out in the Script Editor. Basically the loop would crash while setting up the attributes, so you ended up with a partially constructed channel box. Justin On Fri, Apr 17, 2015 at 7:54 PM Jean Noval <jeanno...@gmail.com> wrote: > Thanks Justin, I am looking forward to your response ! > By the way I'm using Maya 2014 > > -- > You received this message because you are subscribed to the Google Groups > "Python Programming for Autodesk Maya" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to python_inside_maya+unsubscr...@googlegroups.com. > To view this discussion on the web visit > https://groups.google.com/d/msgid/python_inside_maya/c375cc8d-5ef9-44b9-b664-2f975aab9617%40googlegroups.com > <https://groups.google.com/d/msgid/python_inside_maya/c375cc8d-5ef9-44b9-b664-2f975aab9617%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group. To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAPGFgA1jNTS4b__wAGj7v%2BpwxWn0yBFeOJE788Dzj9vSO_%3Dy1w%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.