-
Notifications
You must be signed in to change notification settings - Fork 462
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
Add more options to control the emblems visibility #1988
Conversation
Increases the size fo the small screens, ensuring it can be visible in most cases. Closes: micheleg#1969
…tions Otherwise the badge will be always visible even for those applications that have been acked by the user.
… only Counters could have been disabled together with the unity-API values before, now allow to be more precise.
…summed By default we don't override the applications-provided count anymore, while disabling it the two values are summed.
There's no point to do all the monitoring if it has been disabled explicitly or because we're i dnd mode.
I tested only my "case" by deactivating the checkbox "Show the number of unread notifications" and it's working fine for me. :) |
In my case in Thunderbird, after reading all the unread emails, when it gets down to the last, the emblem does not go away. Tried with applications-provided counts off and on with same result. A notice in Files file manager which I happen to come across, worked as expected |
That option is not meant to disable them (there's the global option for it), but only to sum or not the two values. Apparently in your case there's something still sending us that the number is > 0, because in my tests we hide them otherwise. |
Thanx for the info Marco. Is there some way to discover this? Logs etc..? |
One way is probably to monitor the dbus session, so launching:
For reference, my test app sets it back to 0 and the emblem is hidden: logs
|
Also you can try the |
Thanx Marco. Using hello-unity I figured out the functionality notification wise. As long as the notification on the unity bar is not dismissed, the count remains. And has nothing to do with the fact that I have read or not the emails. Glad to clear this out. Thanx again for contributing on this! |
It's now possible to:
Closes: #1964