IDEMPIERE-5638 - Fix nullpointer when expanding editor in virtual column (#1747)

This commit is contained in:
Jose Leite 2023-03-23 16:38:00 -03:00 committed by GitHub
parent 89dfb22482
commit 92ac50e21f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -284,7 +284,8 @@ public class WTextEditorDialog extends Window implements EventListener<Event>{
}
private void onSize() {
editor.invalidate();
if(editor != null)
editor.invalidate();
}
private void updateStatus(int newLength) {