We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cd9343 commit 9b4466dCopy full SHA for 9b4466d
1 file changed
share/qtvcp/panels/cam_align/cam_align_handler.py
@@ -91,14 +91,14 @@ def initialized__(self):
91
# X axis scale number to use
92
elif 'xscale=' in self.w.USEROPTIONS_[num]:
93
try:
94
- self.scaleX = float(self.w.USEROPTIONS_[num].strip('xscale='))
+ self.w.camview.scaleX = float(self.w.USEROPTIONS_[num].strip('xscale='))
95
except Exception as e:
96
print('Error with cam_align X axis scale - not a number - using 1.0')
97
98
# camera Y axis scale number to use
99
elif 'yscale=' in self.w.USEROPTIONS_[num]:
100
101
- self.scaleY = float(self.w.USEROPTIONS_[num].strip('yscale='))
+ self.w.camview.scaleY = float(self.w.USEROPTIONS_[num].strip('yscale='))
102
103
print('Error with cam_align camera Y axis scale- not a number - using 1.0')
104
0 commit comments