summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover <steve>2006-03-15 23:30:59 +0000
committerSteve Northover <steve>2006-03-15 23:30:59 +0000
commitd36edb4c011745c6d412330228b95742bc762aee (patch)
tree89cbcad409263b40744ac93980115d2b53cfdb20
parenta17452dd94a1be56628b278a6ea50bfeb76fe36f (diff)
downloadeclipse.platform.swt-d36edb4c011745c6d412330228b95742bc762aee.tar.gz
eclipse.platform.swt-d36edb4c011745c6d412330228b95742bc762aee.tar.xz
eclipse.platform.swt-d36edb4c011745c6d412330228b95742bc762aee.zip
*** empty log message ***
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
index 3caf5c23c4..3e18d3c741 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Table.java
@@ -529,7 +529,7 @@ LRESULT CDDS_SUBITEMPREPAINT (int wParam, int lParam) {
if (hasAttributes) {
if (hFont == -1) hFont = OS.SendMessage (handle, OS.WM_GETFONT, 0, 0);
OS.SelectObject (hDC, hFont);
- if (!ignoreDraw && !ignoreDrawSelected && OS.IsWindowEnabled (handle)) {
+ if (OS.IsWindowEnabled (handle)) {
nmcd.clrText = clrText == -1 ? getForegroundPixel () : clrText;
if (clrTextBk == -1) {
nmcd.clrTextBk = OS.CLR_NONE;