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