| 1176 | } |
| 1177 | |
| 1178 | void NetHackQtMainWindow::fadeHighlighting(bool before_key) |
| 1179 | { |
| 1180 | if (before_key) { |
| 1181 | // status highlighting fades at start of turn |
| 1182 | if (status) |
| 1183 | status->fadeHighlighting(); |
| 1184 | } else { |
| 1185 | // message highlighting fades after user has given input |
| 1186 | if (message && message->hilit_mesgs()) |
| 1187 | message->unhighlight_mesgs(); |
| 1188 | } |
| 1189 | } |
| 1190 | |
| 1191 | void NetHackQtMainWindow::layout() |
| 1192 | { |
nothing calls this directly
no test coverage detected