1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00

Fix VISIBILITY_OPTIONS

Reorder Visibility Options to be from "most visible" to "least visible",
and swap the definitions of "private" and "unlisted" to match the actual
visibility that results from those actions.
This commit is contained in:
Finn O'leary 2020-01-26 01:01:48 +00:00 committed by Ivan Habunek
parent a958573d8d
commit a6e76e0bcb

View File

@ -39,7 +39,7 @@ PALETTE = [
VISIBILITY_OPTIONS = [
("public", "Public", "Post to public timelines"),
("private", "Private", "Do not post to public timelines"),
("unlisted", "Unlisted", "Post to followers only"),
("unlisted", "Unlisted", "Do not post to public timelines"),
("private", "Private", "Post to followers only"),
("direct", "Direct", "Post to mentioned users only"),
]