IDEMPIERE-144 Performance: Reduce use of modal dialog

This commit is contained in:
Heng Sin Low 2012-06-20 16:02:13 +08:00
parent b6406e5f5e
commit 4553a5a20e
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,6 @@ public class WRecordInfo extends Window implements EventListener
{ {
super (); super ();
this.setTitle(title); this.setTitle(title);
this.setAttribute("modal", Boolean.TRUE);
this.setWidth("500px"); this.setWidth("500px");
this.setHeight("400px"); this.setHeight("400px");
this.setBorder("normal"); this.setBorder("normal");
@ -101,6 +100,7 @@ public class WRecordInfo extends Window implements EventListener
{ {
log.log(Level.SEVERE, "", e); log.log(Level.SEVERE, "", e);
} }
this.setAttribute(Window.MODE_KEY, Window.MODE_HIGHLIGHTED);
AEnv.showCenterScreen(this); AEnv.showCenterScreen(this);
} // RecordInfo } // RecordInfo