the problem is this: each line of the chat is a label that autoresize in height. The client has a bug on the labels that on some sentences the autoresize adds an additional line, but that additional line is not counted when the scrollable square updates (because it shouldn't exist) and so it creates some space. Add 1, add 2, add 3 of those lines and your journal has lost some lines.
Example if you have a label "Pinco", this is how it should be:
Code:
---------
| PINCO |
---------
instead sometimes became:
Code:
---------
| PINCO |
| |
---------
and the second empty line is not counted because it shouldn't exist. QUOTE]
So this means I'm SOL and nothing can be done?