Merge pull request #3651 from willmofield/eveditor-justify-help-typo

Fix default justify behaviour in EvEditor
This commit is contained in:
Griatch 2024-10-23 22:28:09 +02:00 committed by GitHub
commit 05d082edd5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -731,7 +731,7 @@ class CmdEditorGroup(CmdEditorBase):
+ " [f]ull (default), [c]enter, [r]right or [l]eft"
)
return
align = align_map[self.arg1.lower()] if self.arg1 else "f"
align = align_map[self.arg1.lower()] if self.arg1 else "l"
width = _DEFAULT_WIDTH
if self.arg2:
value = self.arg2.lstrip("=")