fix(files): Don't react to clicks when renaming

Signed-off-by: Louis Chemineau <louis@chmn.me>
This commit is contained in:
Louis Chemineau 2024-06-19 16:45:24 +02:00
parent e22eabb5c3
commit 841cf96def
No known key found for this signature in database

View file

@ -161,6 +161,10 @@ export default defineComponent({
this.actionsMenuStore.opened = opened ? this.uniqueId.toString() : null
},
},
isRenaming() {
return this.renamingStore.renamingNode === this.source
},
},
watch: {
@ -225,6 +229,11 @@ export default defineComponent({
},
execDefaultAction(event) {
// Ignore click if we are renaming
if (this.isRenaming) {
return
}
// Ignore right click.
if (event.button > 1) {
return