Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2015-05-22 17:14:49 +0000
committerGerrit Code Review @ Eclipse.org2015-05-22 18:08:05 +0000
commit905ca49f07b1c6a5627938218a53825043104f4b (patch)
tree73cc9e100dc02c90b118e7bd58cd90cfcda7e94b
parent4077c6e36a35c2d7e44bc5099855a27bb3c82483 (diff)
downloadorg.eclipse.mylyn.commons-905ca49f07b1c6a5627938218a53825043104f4b.tar.gz
org.eclipse.mylyn.commons-905ca49f07b1c6a5627938218a53825043104f4b.tar.xz
org.eclipse.mylyn.commons-905ca49f07b1c6a5627938218a53825043104f4b.zip
438817: Task notification on luna dark theme is unreadable
allow background colour to be set by the theme (the text colour already is) Change-Id: I0f0129879edb581f7ec2b431567a44f97ebb4b61 Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=438817
-rw-r--r--org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/commons/ui/dialogs/AbstractNotificationPopup.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/commons/ui/dialogs/AbstractNotificationPopup.java b/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/commons/ui/dialogs/AbstractNotificationPopup.java
index 3c3427b9..3891b0ce 100644
--- a/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/commons/ui/dialogs/AbstractNotificationPopup.java
+++ b/org.eclipse.mylyn.commons.ui/src/org/eclipse/mylyn/commons/ui/dialogs/AbstractNotificationPopup.java
@@ -336,7 +336,7 @@ public abstract class AbstractNotificationPopup extends Window {
/* Outer Composite holding the controls */
final Composite outerCircle = new Composite(parent, SWT.NO_FOCUS);
outerCircle.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
- outerCircle.setBackgroundMode(SWT.INHERIT_FORCE);
+ outerCircle.setBackgroundMode(SWT.INHERIT_NONE);
outerCircle.addControlListener(new ControlAdapter() {

Back to the top