PyQT list view not responding to datachanged signal
问题 I've been following some tutorials and trying to get a list model set up. My main window has two list views that are accessing the same model. When I update an item in one list, the other list doesn't update itself until it gets focus (I click on it). So it looks like the dataChanged signal isn't being emitted, but I can't work out how my code is different to any of the examples I'm basing it from. main.py class Main(QtWidgets.QMainWindow): def __init__(self, parent=None): super(Main, self)._