Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix display issues with broken border or characters from the previous line not being cleared #532

Merged
merged 1 commit into from
Feb 6, 2024

Conversation

Nogesma
Copy link
Contributor

@Nogesma Nogesma commented Feb 5, 2024

I managed to find the reason why sometimes the borders get broken, or we have a character from a line that still gets displayed. This is the same issue as #298 (comment).

I think this only happened on kitty, and maybe foot, because this came from the fact that ratatui and most other terminals were calculating the width of the \u{e0000} character incorrectly.

This character is used by twitch clients like chatterino to bypass twitch duplicate message timeout, so it can appear quite frequently.

My fix is to just remove it from the message as it is not meant to be rendered.

It is possible that there are some other discrepancies between ratatui and different terminals, so there could be some other unicode characters that will display the same rendering issues, but I haven't seen any for now.

This PR is independent of the other 2 I have, so you can merge it whenever you want.

Copy link

codecov bot commented Feb 5, 2024

Codecov Report

Attention: 4 lines in your changes are missing coverage. Please review.

Comparison is base (3c426e9) 6.24% compared to head (fa3d97c) 7.32%.

Files Patch % Lines
src/twitch/mod.rs 0.00% 4 Missing ⚠️
Additional details and impacted files
@@           Coverage Diff            @@
##            main    #532      +/-   ##
========================================
+ Coverage   6.24%   7.32%   +1.08%     
========================================
  Files         39      39              
  Lines       4114    4161      +47     
========================================
+ Hits         257     305      +48     
+ Misses      3857    3856       -1     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@Xithrius
Copy link
Owner

Xithrius commented Feb 5, 2024

Oh man, I've been trying to solve this issue ever since scrolling was implemented in the main chat window (probably around a year or so ago, and it may have existed even before then).

I'm so glad you were able to find a fix, I'll test this on my machine later today.

Thank you so much!

@Xithrius Xithrius requested review from Xithrius and kosayoda February 5, 2024 21:24
@Nogesma
Copy link
Contributor Author

Nogesma commented Feb 5, 2024

Haha it was a tricky one to find. I switched the debug! of the twitch message to print the debug version of the cleaned_message string, so that it will actually display invisible unicode characters, which should hopefully help us find any other similar issue in the future, should they arise.

I also noticed there is still a few rendering issues when emotes are enabled, probably something to do with spans starting/ending with zero-width spaces, but this is already fixed in #529, so I won't fix it here.

Copy link
Owner

@Xithrius Xithrius left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Beautiful. I don't get any artifacts in streams with any kind of traffic. Thank you!

@Xithrius Xithrius merged commit ce39eae into Xithrius:main Feb 6, 2024
@Xithrius
Copy link
Owner

Xithrius commented Feb 6, 2024

available in https://github.com/Xithrius/twitch-tui/releases/tag/v2.6.3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants