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 right justification: conditionally preserve trailing space character #3649

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

BenRachmiel
Copy link

Type of changes

  • Bug fix
  • New feature
  • Documentation / docstrings
  • Tests
  • Other

Checklist

  • I've run the latest black with default args on new code.
  • I've updated CHANGELOG.md and CONTRIBUTORS.md where appropriate.
  • I've added tests for new code.
  • I accept that @willmcgugan may be pedantic in the code review.

Description

Please describe your changes here. If this fixes a bug, please link to the issue, if possible.
#3641 details an issue with right justified titles of panels losing the trailing whitespace, and it being reassigned to the beginning of the segment. It appears that trailing whitespace is removed via rstrip, but titles have a singular space added after the text (I assume for visual clarity), which is inadvertently removed.

Seeing as this change might have knock-on effects, I attempted to mitigate that by using a ternary if, checking that the final character is a space and if so, leaving that space out of the rstrip. I have not added a test, since I do not know if the test mentioned in the issue is appropriate (seems very hardcoded), but could think up a regression test if necessary (don't know exactly how atm, but I could learn).

First time contributing to open source, hope this isn't a dumb way to tackle the issue, but I do see how it could have some unintended consequences.

@@ -137,7 +135,7 @@ def justify(
line.pad_right(width - cell_len(line.plain))
elif justify == "right":
for line in self._lines:
line.rstrip()
line[:-1].rstrip() if line[-1] == Text(" ") else line.rstrip()
Copy link
Collaborator

Choose a reason for hiding this comment

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

Since the markup is irrelevent for the condition, it is faster to do line.plain.endswith(" ")

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

Successfully merging this pull request may close these issues.

2 participants