Stop the animation ticker if running.
(&mut self)
| 2748 | |
| 2749 | /// Stop the animation ticker if running. |
| 2750 | pub fn stop_anim(&mut self) { |
| 2751 | if let Some(h) = self.anim_handle.take() { |
| 2752 | h.abort(); |
| 2753 | } |
| 2754 | } |
| 2755 | |
| 2756 | /// Reset sandbox and provider state after switching gateways. |
| 2757 | pub fn reset_sandbox_state(&mut self) { |
no test coverage detected