BF [ 1734924 ] Error when you create a new record that has mandatory values

http://sourceforge.net/tracker/index.php?func=detail&aid=1734924&group_id=176962&atid=879332
This commit is contained in:
teo_sarca 2007-06-11 12:48:43 +00:00
parent 9e039d4d76
commit 4031932f4c
1 changed files with 2 additions and 2 deletions

View File

@ -444,16 +444,16 @@ public class VLookup extends JComponent
{
m_text.setText (null);
m_lastDisplay = "";
m_settingValue = false;
m_combo.setValue (value);
m_settingValue = false;
return;
}
if (m_lookup == null)
{
m_text.setText (value.toString());
m_lastDisplay = value.toString();
m_settingValue = false;
m_combo.setValue (value);
m_settingValue = false;
return;
}