komoku / aetheria

Aetheria Game Engine - Migrated from code.google.com/p/aetheria
Other
8 stars 0 forks source link

El área de salida de texto de AGE no hace "word wrap" correctamente en JDK 7 #255

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
En la versión 7 de Java, se produce este efecto: http://i.imgur.com/XYdTT.png

Donde el área de texto no se estrecha sino que se muestra con scroll 
horizontal.

Original issue reported on code.google.com by komoku on 28 Dec 2011 at 11:03

GoogleCodeExporter commented 9 years ago
http://sourceforge.net/tracker/index.php?func=detail&aid=3395174&group_id=84631&
atid=573422

Original comment by komoku on 28 Dec 2011 at 11:06

GoogleCodeExporter commented 9 years ago
Eso parece ser para JTextArea pero no JTextPane, habrá que buscar otra cosa...

Original comment by komoku on 28 Dec 2011 at 11:31

GoogleCodeExporter commented 9 years ago
El error no se debe realmente a que JDK 7 no hace word wrap. Se debe a que se 
niega a cortar por el medio de una palabra, incluso si no queda más remedio.

Al principio de las aventuras, se imprime una línea tipo

================================================

Y JDK 7 se niega a cortarla en dos. Es como si pusiese como tamaño mínimo del 
JTextPane la anchura de eso (incluso si le especificamos explícitamente otro 
tamaño mínimo). Así que un workaround en caso de no poder cambiar el 
comportamiento al de Java 1.6- sería no imprimir eso.

Original comment by komoku on 29 Dec 2011 at 10:06

GoogleCodeExporter commented 9 years ago
This issue was closed by revision r501.

Original comment by komoku on 29 Dec 2011 at 11:38