From 74db7ec57a021b9485e66f644b9ba02e7060c783 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 15 Jan 2008 03:25:00 +0000 Subject: [PATCH] Reverting these two lines from revision 4185 They are not working with latest change of revision 4194 --- client/src/org/compiere/grid/ed/VLookup.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/client/src/org/compiere/grid/ed/VLookup.java b/client/src/org/compiere/grid/ed/VLookup.java index a2ea589cf1..35062924d2 100644 --- a/client/src/org/compiere/grid/ed/VLookup.java +++ b/client/src/org/compiere/grid/ed/VLookup.java @@ -498,8 +498,7 @@ public class VLookup extends JComponent if (notFound) // { m_value = null; - if (!m_inserting) - actionCombo (null); // data binding + actionCombo (null); // data binding log.fine(m_columnName + "=" + value + ": Not found"); } // we have lookup @@ -518,8 +517,7 @@ public class VLookup extends JComponent if (m_combo.getSelectedItem() == null) { log.info(m_columnName + "=" + value + ": not in Lookup - set to NULL"); - if (!m_inserting) - actionCombo (null); // data binding (calls setValue again) + actionCombo (null); // data binding (calls setValue again) m_value = null; } }