Table View not properly updated in PyQt5

Issue #213 resolved
Joern Ungermann created an issue

Using PyQt5, moving waypoint in top/SideView does not update the TableView properly. Only when the TableView is focused, the changed values become visible.

This may be related to https://stackoverflow.com/questions/22560296/pyqt-list-view-not-responding-to-datachanged-signal In PyQt5 the dataChanged signal was changed compared to PyQt4. The waypointsmodel somehow defines the dataChanged slot in the way PyQt4 used it, probably overwriting the signal improperly for PyQt5. Removing the seemingly superfluous definition of the slot removes the problem for PyQt5 and still works for PyQt4.

Comments (1)

  1. Log in to comment