fixed printer depth not saving or loading properly in the printer profile

This commit is contained in:
Mike New 2016-09-02 22:07:56 -07:00
parent f936c24da4
commit 9bed3dcf8b

View file

@ -176,8 +176,8 @@ $(function() {
self.model(data.model);
self.volumeWidth(data.volume.width);
self.volumeHeight(data.volume.depth);
self.volumeDepth(data.volume.height);
self.volumeHeight(data.volume.height);
self.volumeDepth(data.volume.depth);
self.volumeFormFactor(data.volume.formFactor);
self.volumeOrigin(data.volume.origin);
@ -220,7 +220,7 @@ $(function() {
model: self.model(),
volume: {
width: parseFloat(self.volumeWidth()),
depth: parseFloat(self.volumeHeight()),
depth: parseFloat(self.volumeDepth()),
height: parseFloat(self.volumeHeight()),
formFactor: self.volumeFormFactor(),
origin: self.volumeOrigin()