Skip to content

Commit

Permalink
[bug] fix bug 62865
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeyLuzyanin authored and K0R0L committed Oct 16, 2023
1 parent f293341 commit 6113e5a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/Drawings/CommonController.js
Original file line number Diff line number Diff line change
Expand Up @@ -1543,13 +1543,13 @@
}
}

var bStartMedia = !!(window["AscDesktopEditor"] && object.getMediaFileName());
if (object.canMove() || bStartMedia) {
if (this.isSlideShow()) {
if (!bStartMedia) {
return null;
}
let bStartMedia = !!(window["AscDesktopEditor"] && object.getMediaFileName());
if (this.isSlideShow()) {
if (!bStartMedia) {
return null;
}
}
if (object.canMove() || bStartMedia) {
this.checkSelectedObjectsForMove(pageIndex);
if (!isRealObject(group)) {
var bGroupSelection = AscCommon.isRealObject(this.selection.groupSelection);
Expand Down

0 comments on commit 6113e5a

Please sign in to comment.