IDEMPIERE-5894 - Fixed bug rendering the find window fields wrongly (#2076)

This commit is contained in:
Diego Ruiz 2023-10-27 16:26:40 +02:00 committed by GitHub
parent 9ac87d3c9a
commit 7f2f0f2591
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1593,8 +1593,7 @@ public class FindWindow extends Window implements EventListener<Event>, ValueCha
// Editor // Editor
WEditor editor = null; WEditor editor = null;
//false will use hflex which is render 1 pixel too width on firefox editor = WebEditorFactory.getEditor(mField, false);
editor = WebEditorFactory.getEditor(mField, true);
if (editor == null || !editor.isSearchable()) { if (editor == null || !editor.isSearchable()) {
return false; return false;
} }