Skip to content
Snippets Groups Projects
Commit e6a121d3 authored by Richard Alam's avatar Richard Alam
Browse files

Fix presentation slide coordinates

 Forgot to assign the values correctly.
parent cb161ac1
No related branches found
No related tags found
No related merge requests found
......@@ -94,8 +94,7 @@ trait PresentationApp {
val width = if (msg.widthRatio <= 100) msg.widthRatio else 100
val height = if (msg.heightRatio <= 100) msg.heightRatio else 100
val page = presModel.resizePage(msg.xOffset, msg.yOffset,
msg.widthRatio, msg.heightRatio);
val page = presModel.resizePage(xOffset, yOffset, width, height);
page foreach (p => outGW.send(new ResizeAndMoveSlideOutMsg(mProps.meetingID, mProps.recorded, p)))
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment