Skip to content

Commit

Permalink
made filped text be mirrored
Browse files Browse the repository at this point in the history
filliped text is normally mirrored (because it makes it easier to read if you flip your display upside down) so it should be in this case as well
  • Loading branch information
Thinkseal authored Oct 28, 2024
1 parent 15de68a commit 5c36283
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/TextConverter.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def flipUD(self, text):
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890.,!?/\"'()[]{\}",
"ɐqɔpǝɟɓɥᴉſʞlɯuodbɹsʇnʌʍxʎzⱯᗺƆᗡƎℲ⅁HIſꓘꞀWNOԀꝹᴚS⟘∩ΛMX⅄Z⇂ᘕԐત૨୧L8მ0·'¡¿\„,)(][}/{"
)
return text.translate(flip_map)
return text.translate(flip_map)[::-1]

def reverse_text(self, text):
return text[::-1]
Expand Down

0 comments on commit 5c36283

Please sign in to comment.