Skip to content

Commit

Permalink
Merge branch 'release_2.8.0' of github.com:GwtMaterialDesign/gwt-mate…
Browse files Browse the repository at this point in the history
…rial into release_2.8.0
  • Loading branch information
kevzlou7979 committed Aug 18, 2023
2 parents 9a06eea + 19e0a88 commit cedde40
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ public boolean isOpen() {
String id = getId();
if (id != null && !id.isEmpty()) {
Widget toast = RootPanel.get(id);
if(toast == null){
return false;
}
return toast.isAttached() && toast.isVisible();
}
return false;
Expand Down

0 comments on commit cedde40

Please sign in to comment.