fix(ui): do not show/hide objects when filtering

This is a holdover from before the buffer renderer was split out.
This commit is contained in:
psychedelicious
2024-09-13 19:01:07 +10:00
parent 790195854e
commit fbe02e3d1d

View File

@@ -131,7 +131,6 @@ export class CanvasEntityFilterer extends CanvasModuleBase {
await this.parent.bufferRenderer.setBuffer(this.imageState, true);
this.parent.renderer.hideObjects();
this.$isProcessing.set(false);
this.$hasProcessed.set(true);
};
@@ -190,7 +189,6 @@ export class CanvasEntityFilterer extends CanvasModuleBase {
this.log.trace('Resetting filter');
this.parent.bufferRenderer.clearBuffer();
this.parent.renderer.showObjects();
this.parent.transformer.updatePosition();
this.parent.renderer.syncCache(true);
this.imageState = null;