You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using some utf-8 characters like japanese 「ひらがなカタカナ漢字」 the rendering in certain widgets seems to break non-deterministically. That is for example for tooltips and the select widget, some characters will not be rendered some of the time. For tooltips for example hovering away and back to the widget with tooltip can fix the issue or cause other glyphs to fail to render.
Render failure is as follows, imagine we want to render the string "ひらがなカタカナ漢字" then sometimes this will be displayed as "ひらが カタカナ漢字", or "ひらが カタカナ 字" or "ひらがなカ カナ漢字" or something like that. In essence the width of the string is retained, but some characters seem to be rendered as whitespace (they will have the background color).
I tried the following (none of these have helped):
overriding the width calculation for the characters
increase available space for the tooltips
interleaving 0 space characters between the actual characters
normalization via unicodedata.normalize
wrapping the string in rich.text.Text
wrapping the string in rich.pretty.Pretty
Reproduction
The tooltips in the following app will have this issue. Note however that this is only sometimes so repeated hovering over several tooltips will be necessary to show the issue. I estimate it occurs on 5-10% of attempts.
The Bug
When using some utf-8 characters like japanese 「ひらがなカタカナ漢字」 the rendering in certain widgets seems to break non-deterministically. That is for example for tooltips and the select widget, some characters will not be rendered some of the time. For tooltips for example hovering away and back to the widget with tooltip can fix the issue or cause other glyphs to fail to render.
Render failure is as follows, imagine we want to render the string "ひらがなカタカナ漢字" then sometimes this will be displayed as "ひらが カタカナ漢字", or "ひらが カタカナ 字" or "ひらがなカ カナ漢字" or something like that. In essence the width of the string is retained, but some characters seem to be rendered as whitespace (they will have the background color).
I tried the following (none of these have helped):
Reproduction
The tooltips in the following app will have this issue. Note however that this is only sometimes so repeated hovering over several tooltips will be necessary to show the issue. I estimate it occurs on 5-10% of attempts.
Textual Diagnostics
Versions
Python
Operating System
I confirmed the same bug on windows 11 powershell and windows 10 powershell.
Terminal
Rich Console options
Video
Here you can see that the string "4ヶ月間の平均" gets rendered as "4ヶ月間の 均"
textual-bug.mp4
The text was updated successfully, but these errors were encountered: