| 451 | } |
| 452 | |
| 453 | void LightscreenWindow::restoreNotification() |
| 454 | { |
| 455 | if (mTrayIcon) { |
| 456 | mTrayIcon->setIcon(QIcon(":/icons/lightscreen.small")); |
| 457 | } |
| 458 | |
| 459 | if (mHasTaskbarButton) { |
| 460 | mTaskbarButton->clearOverlayIcon(); |
| 461 | mTaskbarButton->progress()->setVisible(false); |
| 462 | mTaskbarButton->progress()->stop(); |
| 463 | mTaskbarButton->progress()->reset(); |
| 464 | } |
| 465 | |
| 466 | updateStatus(); |
| 467 | } |
| 468 | |
| 469 | void LightscreenWindow::screenshotAction(Screenshot::Mode mode) |
| 470 | { |
nothing calls this directly
no test coverage detected