Re: [Interest] [External] Proxied view not updating live when source model does

2021-09-22 Thread Friedemann Kleint
Hi, have you runĀ  QAbstractItemModelTester https://doc.qt.io/qt-6/qabstractitemmodeltester.html on the source model and the proxy model? It usually quickly reveals issues in the overridden methods. Regards, Friedemann -- Friedemann Kleint The Qt Company GmbH

Re: [Interest] [External] Proxied view not updating live when source model does

2021-09-21 Thread Elvis Stansvik
Den tis 21 sep. 2021 16:00Murphy, Sean skrev: > > I'm having an issue where my proxy model and its associated view aren't > > updating live when changes are made in the source model. > > > > My proxy model simply is attempting to invert the rows of the source > model. So > > it inherits from a

Re: [Interest] [External] Proxied view not updating live when source model does

2021-09-21 Thread Murphy, Sean
> I'm having an issue where my proxy model and its associated view aren't > updating live when changes are made in the source model. > > My proxy model simply is attempting to invert the rows of the source model. So > it inherits from a QSortFilterProxyModel and implements mapFromSource() and >