@lvce-editor/renderer-process 30.33.4 → 30.33.5
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.
|
@@ -8256,10 +8256,15 @@ const handleFocusOut = event => {
|
|
|
8256
8256
|
if (relatedTarget && isInsideTitleBarMenu(relatedTarget)) {
|
|
8257
8257
|
return;
|
|
8258
8258
|
}
|
|
8259
|
-
|
|
8259
|
+
const uid = fromEvent(event);
|
|
8260
|
+
if (!relatedTarget && target && isInsideTitleBarMenu(target)) {
|
|
8261
|
+
queueMicrotask(() => {
|
|
8262
|
+
if (target.isConnected) {
|
|
8263
|
+
closeMenu$1(uid);
|
|
8264
|
+
}
|
|
8265
|
+
});
|
|
8260
8266
|
return;
|
|
8261
8267
|
}
|
|
8262
|
-
const uid = fromEvent(event);
|
|
8263
8268
|
closeMenu$1(uid);
|
|
8264
8269
|
};
|
|
8265
8270
|
const handlePointerOver = event => {
|