Community
Participate
Working Groups
CaptionedControl has an error in the focusOutListener which produces an NPE if the event is for a Shell/MobileShell. Code fix suggestion: while(c!=thisControl){ if(c instanceof Shell){ break; }else if(c.getParent() instanceof Shell){ break; }else{ c = c.getParent(); } } In the code exmaples in the comments "ConstraintedText" instead of "ConstrainedText" is used.