(kind: &str)
| 391 | Color::from_hex("#2A2F36").unwrap_or(node.focused_style.fill); |
| 392 | node.focused_style.stroke = |
| 393 | Color::from_hex("#4D84D1").unwrap_or(node.focused_style.stroke); |
| 394 | node.focused_style.stroke_width = 1.0; |
| 395 | node.focused_style.set_corner_radius(0.12); |
| 396 | }); |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | fn matrix_kind_shape(kind: &str) -> Option<(usize, usize)> { |
no test coverage detected