View | Details | Raw Unified | Return to bug 203274
Collapse All | Expand All

(-)src/org/eclipse/ui/forms/widgets/FormToolkit.java (-1 / +1 lines)
Lines 864-870 Link Here
864
			// (6.0))
864
			// (6.0))
865
			// Check for Windows Classic. If not used, set the style to BORDER
865
			// Check for Windows Classic. If not used, set the style to BORDER
866
			RGB rgb = colors.getSystemColor(SWT.COLOR_WIDGET_BACKGROUND);
866
			RGB rgb = colors.getSystemColor(SWT.COLOR_WIDGET_BACKGROUND);
867
			if (rgb.red != 212 && rgb.green != 208 && rgb.blue != 200)
867
			if (rgb.red != 212 || rgb.green != 208 || rgb.blue != 200)
868
				borderStyle = SWT.BORDER;
868
				borderStyle = SWT.BORDER;
869
		} else if (osname.startsWith("Mac")) //$NON-NLS-1$
869
		} else if (osname.startsWith("Mac")) //$NON-NLS-1$
870
			borderStyle = SWT.BORDER;
870
			borderStyle = SWT.BORDER;

Return to bug 203274