From 8c9793946e4604da4832b71ed6150358f5f4498e Mon Sep 17 00:00:00 2001 From: Piotr Aniola Date: Fri, 13 Sep 2013 13:34:35 -0400 Subject: Fix for Bug 389129 - Progress view background incorrect on 4.2 Signed-off-by: Piotr Aniola --- .../org/eclipse/ui/internal/progress/DetailedProgressViewer.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java index f9341878813..291ac0c802d 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/progress/DetailedProgressViewer.java @@ -123,11 +123,13 @@ public class DetailedProgressViewer extends AbstractProgressViewer { noEntryArea = new Composite(scrolled, SWT.NONE); noEntryArea.setLayout(new GridLayout()); + noEntryArea.setBackground(noEntryArea.getDisplay() + .getSystemColor(SWT.COLOR_LIST_BACKGROUND)); Text noEntryLabel = new Text(noEntryArea, SWT.SINGLE); noEntryLabel.setText(ProgressMessages.ProgressView_NoOperations); noEntryLabel.setBackground(noEntryArea.getDisplay().getSystemColor( - SWT.COLOR_WIDGET_BACKGROUND)); + SWT.COLOR_LIST_BACKGROUND)); GridData textData = new GridData(GridData.VERTICAL_ALIGN_BEGINNING); noEntryLabel.setLayoutData(textData); noEntryLabel.setEditable(false); -- cgit v1.2.3