Skip to content

Commit

Permalink
show next warning
Browse files Browse the repository at this point in the history
fixes bug in warnings where only the first message is shown when multiple warnings are queued.
  • Loading branch information
forrestguice committed Jan 16, 2025
1 parent 25016a5 commit d0389dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ public void onDismissed(Snackbar snackbar, int event)
{
case DISMISS_EVENT_SWIPE:
wasDismissed = true;
snackbar.get().getView().post(new Runnable() {
snackbar.getView().post(new Runnable() {
@Override
public void run() {
showNextWarning();
Expand Down

0 comments on commit d0389dd

Please sign in to comment.