mirror of https://github.com/apache/nifi.git
NIFI-13176: (#8780)
- Relaxing the scale that triggers when details for components on the canvas are not rendered. This closes #8780
This commit is contained in:
parent
6950290c24
commit
63cc1c3af6
|
@ -39,7 +39,7 @@ export class CanvasView {
|
|||
private static readonly INCREMENT: number = 1.2;
|
||||
private static readonly MAX_SCALE: number = 8;
|
||||
private static readonly MIN_SCALE: number = 0.2;
|
||||
private static readonly MIN_SCALE_TO_RENDER: number = 0.6;
|
||||
private static readonly MIN_SCALE_TO_RENDER: number = 0.4;
|
||||
|
||||
private svg: any;
|
||||
private canvas: any;
|
||||
|
|
Loading…
Reference in New Issue