From a6e76e0bcba03b74a0e17e8c9454acb7eba504fe Mon Sep 17 00:00:00 2001 From: Finn O'leary Date: Sun, 26 Jan 2020 01:01:48 +0000 Subject: [PATCH] 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. --- toot/tui/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toot/tui/constants.py b/toot/tui/constants.py index 346230d..e2a2a5c 100644 --- a/toot/tui/constants.py +++ b/toot/tui/constants.py @@ -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"), ]