@lvce-editor/renderer-process 30.12.0 → 30.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7395,8 +7395,9 @@ const handleHeaderClick$1 = event => {
|
|
|
7395
7395
|
handleClickTab$1(target, uid);
|
|
7396
7396
|
return;
|
|
7397
7397
|
}
|
|
7398
|
-
|
|
7399
|
-
|
|
7398
|
+
const action = target.closest?.('.IconButton[data-command]');
|
|
7399
|
+
if (action) {
|
|
7400
|
+
handleClickAction$1(action, uid);
|
|
7400
7401
|
}
|
|
7401
7402
|
};
|
|
7402
7403
|
|
|
@@ -7587,8 +7588,9 @@ const handleHeaderClick = event => {
|
|
|
7587
7588
|
target
|
|
7588
7589
|
} = event;
|
|
7589
7590
|
const uid = fromEvent(event);
|
|
7590
|
-
|
|
7591
|
-
|
|
7591
|
+
const action = target.closest?.('.IconButton[data-command]');
|
|
7592
|
+
if (action) {
|
|
7593
|
+
handleClickAction(action, uid);
|
|
7592
7594
|
}
|
|
7593
7595
|
};
|
|
7594
7596
|
|