diff --git a/client/src/org/compiere/grid/ed/VLookup.java b/client/src/org/compiere/grid/ed/VLookup.java index c5a48970d4..9a3173204c 100644 --- a/client/src/org/compiere/grid/ed/VLookup.java +++ b/client/src/org/compiere/grid/ed/VLookup.java @@ -1007,7 +1007,7 @@ public class VLookup extends JComponent { String text = m_text.getText(); // Nothing entered, just pressing enter again => ignore - teo_sarca BF [ 1834399 ] - if (text != null && text.equals(m_lastDisplay)) + if (text != null && text.length() > 0 && text.equals(m_lastDisplay)) { log.finest("Nothing entered [SKIP]"); return;