Sets button's image to blank, changes must be flushed with `.flush()` before they will appear on the device!
(&self, key: u8)
| 146 | /// Sets button's image to blank, changes must be flushed with `.flush()` before |
| 147 | /// they will appear on the device! |
| 148 | pub async fn clear_button_image(&self, key: u8) -> Result<(), StreamDeckError> { |
| 149 | let device = self.device.lock().await; |
| 150 | block_in_place(move || device.clear_button_image(key)) |
| 151 | } |
| 152 | |
| 153 | /// Sets blank images to every button, changes must be flushed with `.flush()` before |
| 154 | /// they will appear on the device! |
nothing calls this directly
no outgoing calls
no test coverage detected