mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
Fix mouse event handler for code actions indicator
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
This commit is contained in:
parent
ddc1f237a6
commit
e9250e647b
1 changed files with 1 additions and 1 deletions
|
@ -2264,7 +2264,7 @@ impl Editor {
|
|||
enum Tag {}
|
||||
let style = (self.build_settings)(cx).style;
|
||||
Some(
|
||||
MouseEventHandler::new::<Tag, _, _, _>(0, cx, |_, _| {
|
||||
MouseEventHandler::new::<Tag, _, _, _>(cx.view_id(), cx, |_, _| {
|
||||
Svg::new("icons/zap.svg")
|
||||
.with_color(style.code_actions_indicator)
|
||||
.boxed()
|
||||
|
|
Loading…
Reference in a new issue