IDEMPIERE-5638 - Fix nullpointer when expanding editor in virtual column (#1747)
This commit is contained in:
parent
89dfb22482
commit
92ac50e21f
|
@ -284,7 +284,8 @@ public class WTextEditorDialog extends Window implements EventListener<Event>{
|
||||||
}
|
}
|
||||||
|
|
||||||
private void onSize() {
|
private void onSize() {
|
||||||
editor.invalidate();
|
if(editor != null)
|
||||||
|
editor.invalidate();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateStatus(int newLength) {
|
private void updateStatus(int newLength) {
|
||||||
|
|
Loading…
Reference in New Issue