diff --git a/apps/documenteditor/main/app/controller/ViewTab.js b/apps/documenteditor/main/app/controller/ViewTab.js index 0a3ca2968..2c83c6d2e 100644 --- a/apps/documenteditor/main/app/controller/ViewTab.js +++ b/apps/documenteditor/main/app/controller/ViewTab.js @@ -209,7 +209,9 @@ define([ }, applyZoom: function (value) { - var val = Math.max(25, Math.min(500, value)); + var val = Math.max(10, Math.min(500, value)); + if (this._state.zoomValue === val) + this.view.cmbZoom.setValue(this._state.zoomValue, this._state.zoomValue + '%'); this.api.zoom(val); Common.NotificationCenter.trigger('edit:complete', this.view); },