This commit is contained in:
fourtf
2020-02-20 23:37:46 +01:00
parent d6c3c99605
commit 4a69095d5f
4 changed files with 21 additions and 17 deletions
+1 -3
View File
@@ -205,9 +205,7 @@ public:
assert(row >= 0 && row < this->rows_.size() && column >= 0 &&
column < this->columnCount_);
return this->rows_[row].items[column]->flags() |
Qt::ItemFlag::ItemIsDragEnabled |
Qt::ItemFlag::ItemIsDropEnabled;
return this->rows_[row].items[column]->flags();
}
QStandardItem *getItem(int row, int column)