Merge pull request #2041 from zed-industries/fix-renaming-file

Fix mouse interrupting file/dir editing in project panel
This commit is contained in:
Petros Amoiridis
2023-01-18 15:53:08 +02:00
committed by GitHub
+9 -7
View File
@@ -1176,13 +1176,15 @@ impl ProjectPanel {
)
})
.on_click(MouseButton::Left, move |e, cx| {
if kind == EntryKind::Dir {
cx.dispatch_action(ToggleExpanded(entry_id))
} else {
cx.dispatch_action(Open {
entry_id,
change_focus: e.click_count > 1,
})
if !show_editor {
if kind == EntryKind::Dir {
cx.dispatch_action(ToggleExpanded(entry_id))
} else {
cx.dispatch_action(Open {
entry_id,
change_focus: e.click_count > 1,
})
}
}
})
.on_down(MouseButton::Right, move |e, cx| {