We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85940b4 commit 8448a17Copy full SHA for 8448a17
visualization/motion_planning_tasks/src/task_list_model.cpp
@@ -391,11 +391,12 @@ void SolutionListView::setModel(QAbstractItemModel* model) {
391
updateColumnWidth();
392
}
393
394
-void SolutionListView::dataChanged(const QModelIndex& /*topLeft*/, const QModelIndex& bottomRight,
395
- const QVector<int>& /*roles*/) {
+void SolutionListView::dataChanged(const QModelIndex& topLeft, const QModelIndex& bottomRight,
+ const QVector<int>& roles) {
396
if (bottomRight.column() > 0) {
397
398
399
+ QTreeView::dataChanged(topLeft, bottomRight, roles);
400
401
402
void SolutionListView::resizeEvent(QResizeEvent* e) {
0 commit comments