From afff88162e3e676d4a9819f4465df508598ed4af Mon Sep 17 00:00:00 2001 From: uclaros Date: Fri, 17 May 2024 15:35:51 +0300 Subject: [PATCH] add debug statement --- app/attributes/attributeformmodel.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/app/attributes/attributeformmodel.cpp b/app/attributes/attributeformmodel.cpp index 1c15c5524..ce21e463b 100644 --- a/app/attributes/attributeformmodel.cpp +++ b/app/attributes/attributeformmodel.cpp @@ -97,6 +97,7 @@ void AttributeFormModel::onFormDataChanged( const QUuid id, const QVector r if ( rowIsValid( row ) ) { const QModelIndex modelIndex = index( row, 0 ); + qDebug() << "DEBUG " << roles << " " << data( modelIndex, 273 ); emit dataChanged( modelIndex, modelIndex, roles ); } }