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

Method removeMarker

src/program/ui/InputEditorView.cpp:790–803  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

788}
789
790void InputEditorView::removeMarker()
791{
792 const QModelIndexList indexes = selectionModel()->selectedRows();
793
794 /* If no row was selected, return */
795 if (indexes.count() == 0)
796 return;
797
798 for (const QModelIndex index : indexes)
799 if (inputEditorModel->hasMarker(index.row()))
800 emit removeMarkerSignal(index.row());
801
802 updateMenu();
803}
804
805void InputEditorView::editEvents()
806{

Callers

nothing calls this directly

Calls 1

hasMarkerMethod · 0.80

Tested by

no test coverage detected