Subversion Repositories eFlore/Applications.cel

Compare Revisions

Regard whitespace Rev 278 → Rev 279

/trunk/src/org/tela_botanica/client/vues/observation/indicateurs/MiniZoomImageVue.java
157,9 → 157,13
// lors du double clic
if (Event.ONDBLCLICK == DOM.eventGetType(event)) {
if(imgZoom.isVisible()) {
imgZoom.hide();
} else {
afficherPanneauAgrandi();
}
}
}
};
535,7 → 539,7
XYresize[0] = tailleOr*rapport ;
}
int[] res = {Math.round(XYresize[0]),Math.round(XYresize[1])} ;
int[] res = {(int)Math.round(XYresize[0]*0.85),(int)Math.round(XYresize[1]*0.85)} ;
return res;
}