Disables the automatic focus ring on this element.
(&mut self)
| 229 | |
| 230 | /// Disables the automatic focus ring on this element. |
| 231 | pub fn disable_ring(&mut self) -> &mut Self { |
| 232 | self.config.show_ring = false; |
| 233 | self |
| 234 | } |
| 235 | |
| 236 | /// Sets the color of the focus ring. Default is red `(255, 60, 40)`. |
| 237 | pub fn ring_color(&mut self, color: impl Into<Color>) -> &mut Self { |
no outgoing calls