mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-04-23 03:00:31 -04:00
fix(ui): transform should ignore konva filters (e.g. transparency effect)
This commit is contained in:
@@ -559,7 +559,7 @@ export class CanvasEntityTransformer extends CanvasModuleBase {
|
||||
this.log.debug('Applying transform');
|
||||
this.$isProcessing.set(true);
|
||||
const rect = this.getRelativeRect();
|
||||
await this.parent.renderer.rasterize({ rect, replaceObjects: true });
|
||||
await this.parent.renderer.rasterize({ rect, replaceObjects: true, attrs: { filters: [] } });
|
||||
this.requestRectCalculation();
|
||||
this.stopTransform();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user