If a user presses backtab from within a table
| 2073 | |
| 2074 | // If a user presses backtab from within a table |
| 2075 | void 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 |
nothing calls this directly
no test coverage detected