Text disappears when too many characters

rihonobs

New Member
I have some texts that run at the bottom of the screen using the scroll filter. I've noticed that when the text is too long (around 85 characters), it would disappear. When I delete just 1 character, it would come back. Is this a bug?
1720079588375.png
 
Here are the log lines that appear when I put too much texts. I have tried changing the font, switching to a new scene with nothing in it. It doesn't solve the problems.

22:02:20.493: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:20.497: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:24.646: DirectWrite: CreateFontFaceFromHDC() failed (Indicates an error in an input file such as a font file.) for QFontDef(Family="8514oem", pointsize=9, pixelsize=20, styleHint=5, weight=400, stretch=100, hintingPreference=0) LOGFONT("8514oem", lfWidth=0, lfHeight=-20) dpi=96
22:02:28.218: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:28.220: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:35.335: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:50.468: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:02:52.601: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:04:03.822: device_texture_create (D3D11): Failed to create 2D texture (80070057)
22:04:03.825: device_texture_create (D3D11): Failed to create 2D texture (80070057)
 
What's most likely happening is that the text itself is causing the texture for the text source to exceed 8192 pixels wide.
 
T
What's most likely happening is that the text itself is causing the texture for the text source to exceed 8192 pixels wide.
Thanks. Any ways to fix that?
I'm using this with a Scroll Filter so it's not a problem if the text is too long.
 
The only way to truly fix that is to do your formatting in a browser source instead where you can set a fixed texture size for the source itself while the source can still have internally more space for the text.
 
Back
Top