Merge pull request #3657 from ritzalam/check-presentation-coordinates

Fix presentation slide coordinates
This commit is contained in:
Richard Alam 2017-02-14 11:06:50 -05:00 committed by GitHub
commit b4185a9d3d

View File

@ -94,8 +94,7 @@ trait PresentationApp {
val width = if (msg.widthRatio <= 100) msg.widthRatio else 100 val width = if (msg.widthRatio <= 100) msg.widthRatio else 100
val height = if (msg.heightRatio <= 100) msg.heightRatio else 100 val height = if (msg.heightRatio <= 100) msg.heightRatio else 100
val page = presModel.resizePage(msg.xOffset, msg.yOffset, val page = presModel.resizePage(xOffset, yOffset, width, height);
msg.widthRatio, msg.heightRatio);
page foreach (p => outGW.send(new ResizeAndMoveSlideOutMsg(mProps.meetingID, mProps.recorded, p))) page foreach (p => outGW.send(new ResizeAndMoveSlideOutMsg(mProps.meetingID, mProps.recorded, p)))
} }