/**
* Sets the aspect ratio of the photo.
*/
public void setAspectRatio(AspectRatio aspectRatio) {
if (this.aspectRatio != aspectRatio) {
AspectRatio oldAspectRatio = this.aspectRatio;
this.aspectRatio = aspectRatio;
this.propertyChangeSupport.firePropertyChange(Property.ASPECT_RATIO.name(), oldAspectRatio, aspectRatio);
this.home.getEnvironment().setPhotoAspectRatio(this.aspectRatio);
if (this.aspectRatio == AspectRatio.VIEW_3D_RATIO) {
setHeight(Math.round(width / this.view3DAspectRatio), false);