@lvce-editor/explorer-view 4.2.0 → 4.3.0
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.
|
@@ -2825,7 +2825,7 @@ const wrapListItemCommand = fn => {
|
|
|
2825
2825
|
const intermediate = get(id);
|
|
2826
2826
|
set(id, intermediate.oldState, updatedState);
|
|
2827
2827
|
const maxLineY = getExplorerMaxLineY(minLineY, height, itemHeight, items.length);
|
|
2828
|
-
if (items === intermediate.newState.items && minLineY === intermediate.newState.minLineY && editingIcon === intermediate.newState.editingIcon && cutItems === intermediate.newState.cutItems && editingErrorMessage === intermediate.newState.editingErrorMessage && dropTargets === intermediate.newState.dropTargets) {
|
|
2828
|
+
if (items === intermediate.newState.items && minLineY === intermediate.newState.minLineY && editingIcon === intermediate.newState.editingIcon && cutItems === intermediate.newState.cutItems && editingErrorMessage === intermediate.newState.editingErrorMessage && dropTargets === intermediate.newState.dropTargets && fileIconCache === intermediate.newState.fileIconCache) {
|
|
2829
2829
|
return;
|
|
2830
2830
|
}
|
|
2831
2831
|
const visible = items.slice(minLineY, maxLineY);
|