()
| 594 | .rounded(px(4.0)) |
| 595 | .cursor_pointer() |
| 596 | .bg(motion::hover_blend(&hover_key, rest_bg, hover_bg)) |
| 597 | .on_hover(motion::hover_listener(hover_key)) |
| 598 | .on_mouse_move(cx.listener(move |this, _, _, cx| { |
| 599 | if this.selected_index != i { |
| 600 | this.selected_index = i; |
| 601 | cx.notify(); |
| 602 | } |
| 603 | })) |
| 604 | .on_click(cx.listener(move |this, _, window, cx| { |
| 605 | this.execute_command(cmd_id, window, cx); |
| 606 | })) |
| 607 | .child( |
nothing calls this directly
no test coverage detected