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
1 changed files with 2 additions and 2 deletions

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"),
]