eclipse-mylyn / org.eclipse.mylyn.commons

Eclipse Public License 2.0
1 stars 0 forks source link

Mylyn notification popups overlap instead of stacking verically on screen when multiple #2

Open traggerET opened 1 year ago

traggerET commented 1 year ago

using org.eclipse.mylyn.commons.notifications.core.INotificationService.notify(...) from different parts of code (and with quite a big time interval) generate several notification popups, but instead of drawing on top of the ones which are already on the screen, the new one is just gets drawn over existing popups which gives a mess.

traggerET commented 1 year ago

image

akurtakov commented 1 year ago

JFace now has notifications so it's worth considering using it instead of mylyn ones and even deprecating the mylyn one.

mjmeijer commented 1 year ago

+1 I support deprecating these popups and switching to JFace ones. Less code is less code to maintain, but see discussion here:

https://bugs.eclipse.org/bugs/show_bug.cgi?id=229823

BeckerFrank commented 1 year ago

using org.eclipse.mylyn.commons.notifications.core.INotificationService.notify(...) from different parts of code (and with quite a big time interval) generate several notification popups, but instead of drawing on top of the ones which are already on the screen, the new one is just gets drawn over existing popups which gives a mess.

Is it possible, that you can share a simple example demonstrating this behavior?