| 1138 | } |
| 1139 | |
| 1140 | void TOPPASBase::keyPressEvent(QKeyEvent* e) |
| 1141 | { |
| 1142 | if (e->key() == Qt::Key_F5) |
| 1143 | { |
| 1144 | TOPPASWidget* tw = activeSubWindow_(); |
| 1145 | if (!tw) |
| 1146 | { |
| 1147 | e->ignore(); |
| 1148 | return; |
| 1149 | } |
| 1150 | TOPPASScene* ts = tw->getScene(); |
| 1151 | ts->runPipeline(); |
| 1152 | e->accept(); |
| 1153 | } |
| 1154 | } |
| 1155 | |
| 1156 | void TOPPASBase::updateCurrentPath() |
| 1157 | { |
nothing calls this directly
no test coverage detected