MCPcopy Create free account
hub / github.com/baumgarr/nixnote2 / setTableCursorPositionTab

Method setTableCursorPositionTab

gui/nbrowserwindow.cpp:2075–2081  ·  view source on GitHub ↗

If a user presses backtab from within a table

Source from the content-addressed store, hash-verified

2073
2074// If a user presses backtab from within a table
2075void NBrowserWindow::setTableCursorPositionTab(int currentRow, int currentCol, int tableRows, int tableColumns) {
2076 if (currentRow == tableRows && currentCol == tableColumns) {
2077 this->insertTableRowButtonPressed();
2078 }
2079 QKeyEvent *down = new QKeyEvent(QEvent::KeyPress, Qt::Key_Down, Qt::NoModifier);
2080 QCoreApplication::postEvent(editor->editorPage, down);
2081}
2082
2083
2084

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected