| 621 | } |
| 622 | |
| 623 | void QuickInspector::setOverlaySettings(const GammaRay::QuickDecorationsSettings &settings) |
| 624 | { |
| 625 | if (!m_overlay) { |
| 626 | emit overlaySettings(QuickDecorationsSettings()); // Let's not leave the client without an answer. |
| 627 | return; |
| 628 | } |
| 629 | |
| 630 | m_overlay->setSettings(settings); |
| 631 | emit overlaySettings(m_overlay->settings()); |
| 632 | } |
| 633 | |
| 634 | void QuickInspector::checkOverlaySettings() |
| 635 | { |
nothing calls this directly
no test coverage detected