[VE] Fix bug 79695

This commit is contained in:
Alexey Koshelev
2026-02-02 12:51:50 +03:00
parent 3fbd5d7afc
commit 82a2d272d1

View File

@ -382,7 +382,9 @@ define([
},
clickToolbarPrint: function () {
if (this.mode.canPrint)
if (this.mode.canPreviewPrint)
this.leftMenu.showMenu('file:printpreview');
else if (this.mode.canPrint)
this.clickMenuFileItem(null, 'print');
},