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 committed by Louis
parent efe3244acf
commit 8e0be0a238

View File

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