Commit a731a62c authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] Fix bug with updating zoom value in the toolbar menu when editor is loading.

parent a84fd57c
......@@ -1449,7 +1449,7 @@ define([
case 2: // FitPage
case 0:
default: {
this.toolbar.mnuZoom.options.value = percent;
this.toolbar.mnuZoom.options.value = Math.floor((zf + .005) * 100);
$('.menu-zoom .zoom', this.toolbar.el).html(Math.floor((zf + .005) * 100) + '%');
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment