Changes between Initial Version and Version 1 of Ticket #1635, comment 7


Ignore:
Timestamp:
Nov 12, 2020, 7:18:25 PM (5 years ago)
Author:
Tom Goddard

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #1635, comment 7

    initial v1  
    664) QPushButton.clicked signal handler takes an QEvent in PyQt5, takes no argument in PySide2, effects Model Panel.
    775) QObject.findChild() does not have an options argument in PySide2 even though Qt and PyQt5 does, we use option to only look at immediate children.  Qt bug report from Jan 2019 describes this, not fixed: https://bugreports.qt.io/browse/PYSIDE-905.  Easy to work around by looping over children.
    8 6) QVariant is not in PySide2.  We use it in ui.widgets.ItemTable.  Don't know how to fix this.
     86) QVariant is not in PySide2.  We use it in ui.widgets.ItemTable.  Used by rotamers gui. Don't know how to fix this.
    997) QAction.triggered signal handler takes a QEvent in PyQt5, but no argument in PySIde2, used in ui.widgets.tabbedtoolbar, easy fix.
    10108) QPainter is not a context manager (no __enter__ method) in PySIde2, used in ui.widgets.tabbedtoolbar, easy fix.