| 61 | } |
| 62 | |
| 63 | void customIcon::mousePressEvent(QMouseEvent *event){ |
| 64 | emit clicked(); |
| 65 | setFocus(); |
| 66 | iconSizeRate -= 0.1; |
| 67 | update(); |
| 68 | } |
| 69 | |
| 70 | void customIcon::mouseReleaseEvent(QMouseEvent *event){ |
| 71 | iconSizeRate += 0.1; |
nothing calls this directly
no outgoing calls
no test coverage detected