Hello. Thank you for this great library!
I'm just thinking, is it possible to exclude notification type from title? Because, for example, in NotificationCenter you have this line: https://github.com/sshtools/two-slices/blob/master/src/main/java/com/sshtools/twoslices/impl/NotificationCenterToaster.java#L893
which basically adds unneeded text before title. Would be great to have it configurable in builder like so:
boolean includeTypeInTitleIfUnsupportedByToaster;
I would pass false here to disable this feature for all toaster's implementations. So, if toaster implementation supports differentiation by type, it should still be used. But if not, the type should be in title.
What do you think about it?
Hello. Thank you for this great library!
I'm just thinking, is it possible to exclude notification type from title? Because, for example, in NotificationCenter you have this line: https://github.com/sshtools/two-slices/blob/master/src/main/java/com/sshtools/twoslices/impl/NotificationCenterToaster.java#L893
which basically adds unneeded text before title. Would be great to have it configurable in builder like so:
I would pass
falsehere to disable this feature for all toaster's implementations. So, if toaster implementation supports differentiation by type, it should still be used. But if not, the type should be in title.What do you think about it?