chiark / gitweb /
Change wording from 'Reply' to 'Send' for non-statuses.
authorSimon Tatham <anakin@pobox.com>
Thu, 14 Dec 2023 19:05:33 +0000 (19:05 +0000)
committerSimon Tatham <anakin@pobox.com>
Thu, 14 Dec 2023 19:05:33 +0000 (19:05 +0000)
You might be sending a message to the named user, but you're not
_replying_ to anything of theirs.

cursesclient.py

index 0f209edcea10f24bad68027d010c469af4ccc311..c6faa1146f47f46d15d0443314c07c2fab477c28 100644 (file)
@@ -734,8 +734,12 @@ class ObjectFile(File):
                 sl.keys.append(('-', 'Up'))
             else:
                 sl.keys.append(('SPACE', 'More'))
-            if self.items_have_authors:
+            if self.items_are_statuses:
                 sl.keys.append(('S', 'Reply'))
+            elif self.items_have_authors:
+                sl.keys.append(('S', 'Send'))
+                # FIXME: for when we can auto-shrink bottom line
+                # sl.keys.append(('E', 'Examine'))
             if self.items_are_statuses:
                 sl.keys.append(('F', 'Fave'))
                 sl.keys.append(('^B', 'Boost'))