| 370 | } |
| 371 | |
| 372 | void MainWindow::gridClicked(QModelIndex idx) |
| 373 | { |
| 374 | //qDebug() << "Grid Clicked"; |
| 375 | if (ui->canFramesView->rowHeight(idx.row()) > normalRowHeight) |
| 376 | { |
| 377 | ui->canFramesView->setRowHeight(idx.row(), normalRowHeight); |
| 378 | } |
| 379 | else { |
| 380 | ui->canFramesView->resizeRowToContents(idx.row()); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | void MainWindow::gridDoubleClicked(QModelIndex idx) |
| 385 | { |
nothing calls this directly
no outgoing calls
no test coverage detected