* Toggles the visibility of this layer. * Freezes the layer if it's not frozen, thaws the layer otherwise */
| 103 | * Freezes the layer if it's not frozen, thaws the layer otherwise |
| 104 | */ |
| 105 | void RS_Layer::toggle() { |
| 106 | //toggleFlag(RS2::FlagFrozen); |
| 107 | data.frozen = !data.frozen; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * (De-)freezes this layer. |
no outgoing calls
no test coverage detected