| 449 | } |
| 450 | |
| 451 | void InputEditorView::showMarkerToolTip(const QModelIndex &index) |
| 452 | { |
| 453 | /* Hide previous tooltip */ |
| 454 | hideMarkerToolTip(); |
| 455 | |
| 456 | /* Check if there is a marker */ |
| 457 | if (index.column() == InputEditorModel::COLUMN_FRAME && inputEditorModel->hasMarker(index.row())) { |
| 458 | markerRow = index.row(); |
| 459 | markerTimerId = this->startTimer(300); |
| 460 | } |
| 461 | } |
| 462 | |
| 463 | void InputEditorView::mouseMoveEvent(QMouseEvent *event) |
| 464 | { |