diff --git a/src/sql/workbench/contrib/queryplan2/browser/widgets/customZoomWidget.ts b/src/sql/workbench/contrib/queryplan2/browser/widgets/customZoomWidget.ts index d8c2642833..a9f7674709 100644 --- a/src/sql/workbench/contrib/queryplan2/browser/widgets/customZoomWidget.ts +++ b/src/sql/workbench/contrib/queryplan2/browser/widgets/customZoomWidget.ts @@ -37,7 +37,7 @@ export class CustomZoomWidget extends QueryPlanWidgetBase { }); attachInputBoxStyler(this.customZoomInputBox, this.themeService); - const currentZoom = queryPlanView.azdataGraphDiagram.graph.view.getScale(); + const currentZoom = queryPlanView.azdataGraphDiagram.graph.view.getScale() * 100; // Setting initial value to graph's current zoom this.customZoomInputBox.value = Math.round(currentZoom).toString();