You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Call Bundler from ppt-gui with photoScalingFactor = 1
What is the expected output? What do you see instead?
The photos should not be scaled down, but it picks a random scaling argument
instead (usually scale down to 1200 pixel)
What version of the product are you using? On what operating system?
v0.1 on Windows 7 x64
Please provide any additional information below.
In osmbundler/__init__.py, just replace
if val>0 and val<1: self.photoScalingFactor = val
with
if val>0 and val<=1: self.photoScalingFactor = val
Original issue reported on code.google.com by [email protected] on 16 Oct 2014 at 8:16
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 16 Oct 2014 at 8:16The text was updated successfully, but these errors were encountered: