@lvce-editor/extension-management-worker 4.31.1 → 4.31.2
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.
|
@@ -2139,6 +2139,10 @@ const invalidateExtensionsCache = async () => {
|
|
|
2139
2139
|
};
|
|
2140
2140
|
|
|
2141
2141
|
const handleChange = async _id => {
|
|
2142
|
+
const statusBarVisible = await invoke$2('Layout.getStatusBarVisible');
|
|
2143
|
+
if (!statusBarVisible) {
|
|
2144
|
+
return;
|
|
2145
|
+
}
|
|
2142
2146
|
await invoke$2('StatusBar.handleItemsChanged');
|
|
2143
2147
|
};
|
|
2144
2148
|
|