used when yn_function() or more() rejects player's input and tries again
| 201 | |
| 202 | // used when yn_function() or more() rejects player's input and tries again |
| 203 | void NetHackQtMessageWindow::RehighlightPrompt() |
| 204 | { |
| 205 | // selects most recent message, which causes it to be highlighted |
| 206 | if (list && list->count()) |
| 207 | list->setCurrentRow(list->count() - 1); |
| 208 | } |
| 209 | |
| 210 | // are there any highlighted messages? |
| 211 | bool NetHackQtMessageWindow::hilit_mesgs() |
no test coverage detected