IDEMPIERE-4786 : Link popup should not be opened at cursor location (#684)

This commit is contained in:
Nicolas Micoud 2021-05-12 08:27:49 +02:00 committed by GitHub
parent 0da2eb5bd2
commit 8d234a8d49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -283,7 +283,7 @@ public class BreadCrumb extends Div implements EventListener<Event> {
}
});
linkPopup.setPage(pathLabel.getPage());
linkPopup.open(pathLabel);
linkPopup.open(pathLabel, "after_start");
}
};
pathLabel.addEventListener(Events.ON_CLICK, listener);