IDEMPIERE-3933 Remove flickering in the find dialog

This commit is contained in:
sjeffen 2019-03-26 23:02:53 -03:00
parent 8d5a15aa34
commit 9a9512a484
1 changed files with 2 additions and 2 deletions

View File

@ -555,7 +555,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
ZKUpdateUtil.setVflex(south, "min");
ZKUpdateUtil.setHeight(winAdvanced, "100%");
ZKUpdateUtil.setWidth(winAdvanced, "99%");
ZKUpdateUtil.setWidth(winAdvanced, "100%");
winAdvanced.addEventListener(Events.ON_OK,this);
LayoutUtils.addSclass("find-window-advanced", winAdvanced);
@ -635,7 +635,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
winAdvanced = new Window();
winLookupRecord = new Window();
Tabpanel tabPanel = new Tabpanel();
tabPanel.setStyle("height: 100%; width: 100%; padding-right: 2px; margin: auto;");
tabPanel.setStyle("height: 100%; width: 100%;");
tabPanel.appendChild(winLookupRecord);
tabPanel.setId("simpleSearch");
winMain.addTab(tabPanel, Msg.getMsg(Env.getCtx(), "Find").replaceAll("&", ""),false, true);