UrlTextField is limited to 128 chars but URLs are limited to 2048
SrRapero720 opened this issue ยท 1 comments
This causes a curious issue. paste a URL forces to UrlTextField to handle the entire URL. but when Gui is re-opened cuts the URL and breaks the picture (couln't load)
suggestion: increase char limit to 2048
put text and after changes limit doesn't works, set text on constructor cuts the URL before set new input limit
so is necesary to do the change on UrlTextField class
removing argument "text" and adding another line with
setMaxStringLength(2048);
setText(text);