| 1471 | } |
| 1472 | |
| 1473 | void WorksheetView::fadeIn(qreal value) { |
| 1474 | auto* effect = static_cast<QGraphicsOpacityEffect*>(lastAddedWorksheetElement->graphicsItem()->graphicsEffect()); |
| 1475 | effect->setOpacity(value); |
| 1476 | } |
| 1477 | |
| 1478 | void WorksheetView::fadeOut(qreal value) { |
| 1479 | auto* effect = new QGraphicsOpacityEffect(); |
nothing calls this directly
no test coverage detected