From 72bad5cadd8731ac9df4653a24569680eaffe5b9 Mon Sep 17 00:00:00 2001 From: Silenio Quarti Date: Thu, 20 Feb 2003 22:23:54 +0000 Subject: *** empty log message *** --- .../Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java index f35d5f64b0..cb675688cf 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/carbon/org/eclipse/swt/widgets/Label.java @@ -83,6 +83,12 @@ void createHandle () { handle = outControl [0]; } +void drawBackground (int control) { + if ((style & SWT.SEPARATOR) != 0) { + drawBackground (control, background); + } +} + void drawWidget (int control, int damageRgn, int visibleRgn, int theEvent) { if (isImage && image != null) { GCData data = new GCData (); -- cgit