MCPcopy Create free account
hub / github.com/clementgallet/libTAS / showMarkerToolTip

Method showMarkerToolTip

src/program/ui/InputEditorView.cpp:451–461  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

449}
450
451void 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
463void InputEditorView::mouseMoveEvent(QMouseEvent *event)
464{

Callers

nothing calls this directly

Calls 2

columnMethod · 0.80
hasMarkerMethod · 0.80

Tested by

no test coverage detected