Index: QxWidget.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/gui/QxWidget.js,v
retrieving revision 1.5
diff -u -r1.5 QxWidget.js
--- QxWidget.js	22 Feb 2006 08:41:24 -0000	1.5
+++ QxWidget.js	8 Mar 2006 21:46:45 -0000
@@ -2977,7 +2977,15 @@
 
 proto._modifyEnabled = function(propValue, propOldValue, propData)
 {
-  propValue ? this.removeState(QxConst.STATE_DISABLED) : this.addState(QxConst.STATE_DISABLED);
+  if (propValue)
+  {
+    this.removeState(QxConst.STATE_DISABLED);
+  }
+  else
+  {
+    this.addState(QxConst.STATE_DISABLED);
+    this.removeState(QxConst.STATE_OVER);
+  }
   return true;
 };
 
