We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75d08a commit b224cc8Copy full SHA for b224cc8
invokeai/frontend/web/src/features/controlLayers/konva/CanvasStagingAreaModule.ts
@@ -123,11 +123,11 @@ export class CanvasStagingAreaModule extends CanvasModuleBase {
123
hideProgressIfSameSession();
124
} else if (this.image.isLoading) {
125
// noop - just wait for the image to load
126
- } else if (this.image.isError) {
127
- hideProgressIfSameSession();
128
} else if (this.image.state.image.image_name !== image.image_name) {
129
await this.image.update({ ...this.image.state, image }, true);
130
+ } else if (this.image.isError) {
+ hideProgressIfSameSession();
131
}
132
this.image.konva.group.visible(shouldShowStagedImage);
133
} else {
0 commit comments