[309984] - XSD editor -Minimum length and maximum length fields don't remain in Properties view in Linux
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDFacetSection.java b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDFacetSection.java
index 4f953ac..e0d0df4 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDFacetSection.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/properties/sections/XSDFacetSection.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2001, 2008 IBM Corporation and others.
+ * Copyright (c) 2001, 2010 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -160,6 +160,7 @@
       {
       	minLengthText.addListener(SWT.Modify, customListener);
       	minLengthText.addListener(SWT.KeyDown, customListener);
+      	minLengthText.addListener(SWT.FocusOut, customListener);
       }
       else
         applyAllListeners(minLengthText);
@@ -179,6 +180,7 @@
       {
     	  maxLengthText.addListener(SWT.Modify, customListener);
     	  maxLengthText.addListener(SWT.KeyDown, customListener);
+    	  maxLengthText.addListener(SWT.FocusOut, customListener);
       }
       else
         applyAllListeners(maxLengthText);