diff --git a/src/mol-plugin/ui/image.tsx b/src/mol-plugin/ui/image.tsx index 5ed068ea834c4b501f9010faf0c89bd05c659536..0653fca1b109ade0a233acfadb253f0fff451fa2 100644 --- a/src/mol-plugin/ui/image.tsx +++ b/src/mol-plugin/ui/image.tsx @@ -156,8 +156,8 @@ export class ImageControls<P, S extends ImageControlsState> extends CollapsableC size: PD.MappedStatic('custom', { canvas: PD.Group({}), custom: PD.Group({ - width: PD.Numeric(width, { min: 1, max, step: 1 }), - height: PD.Numeric(height, { min: 1, max, step: 1 }), + width: PD.Numeric(width, { min: 128, max, step: 1 }), + height: PD.Numeric(height, { min: 128, max, step: 1 }), }, { isFlat: true }) }, { options: [['canvas', 'Canvas'], ['custom', 'Custom']] }) }