use of org.kie.workbench.common.stunner.client.lienzo.canvas.LienzoPanel in project kie-wb-common by kiegroup.
the class ZoomLevelSelectorPresenter method onPanelResize.
private ZoomLevelSelectorPresenter onPanelResize(final double width, final double height) {
final LienzoPanel panel = getPanel();
final int absoluteLeft = panel.getView().getAbsoluteLeft();
final int absoluteTop = panel.getView().getAbsoluteTop();
final double x = absoluteLeft + width - 174;
final double y = absoluteTop + height - 50;
return at(x, y);
}
Aggregations