-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Multiple messages in the SnackBar #7340
Comments
Another solution would be to have multiple Snackbar views, every time we add a new Snackbar, all of the old Snackbars would move up, and the new one would BounceInUp, Unfortunately, this can't happen with the current Snackbar implementation ( private void show(SnackbarEvent event) {
content.getChildren().setAll(event.getContent()); Anyway, this is the method responsible for pushing Snackbars :
|
@calixtus Since this is labelled as a good first issue, can I give it a try? If yes, and since I am new to this project, I would appreciate it if you could provide me with more information about this issue. |
Hi @EduRibeiro00 , yes, give it a shot. Quick |
Hi @calixtus, I would like to work on this issue, is it still open? |
Since I haven't heard anything of @EduRibeiro00 anymore, why not? Good luck and happy coding. Remember to set up your workspace according to our contributors guide at devdocs.jabref.org - especially the codestyle stuff. |
Hey again! Just submitted a WIP PR for this issue. Any feedback is appreciated! Once again sorry for taking so long 😅 |
Hello, I would like to contribute to this. I will go through all the linked issues and PRs to understand the project base since I'm new. |
If JabRef has do display several messages very shortly after each other, the messages are stacked and played one after each other. This is confusing, since the SnackBar is still displaying a message, which is already obsolete. E.g. if you cycle quickly through the preview styles.
A simple solution would be to stack the messages inside an already showing SnackBar, separated by a new line and to lengthen the display time of the SnackBar for the time only the last message should show.
The text was updated successfully, but these errors were encountered: