Skip to content

Commit

Permalink
Fix VISIBILITY_OPTIONS
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
finnoleary authored and ihabunek committed Jan 26, 2020
1 parent a958573 commit a6e76e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toot/tui/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

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

0 comments on commit a6e76e0

Please sign in to comment.