Hi, I’m using Dialog and I added a maximize function.
private void maximise() {
if (isFullScreen) {
initialSize();
} else {
if (isDocked) {
initialSize();
}
max.setIcon(VaadinIcon.COMPRESS_SQUARE.create());
initialWidth = getWidth();
initialHeight = getHeight();
initialLeft = getLeft();
initialTop = getTop();
setTop("0");
setLeft("0");
setSizeFull();
footerLayout.setVisible(true);
}
when I maximize and position the dialog at top 0 and left 0, it does not position at 0, there Is a margin.
i’wold like to remove that margin, is it possible ?

