Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 278 → Rev 279

/trunk/src/org/tela_botanica/client/vues/observation/indicateurs/MiniZoomImageVue.java
157,7 → 157,11
// lors du double clic
if (Event.ONDBLCLICK == DOM.eventGetType(event)) {
afficherPanneauAgrandi();
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;
}