1
0
Fork 0

- exposed to the UI 'refresh-chats';

- fixed type in 'follow-request-window' slot;

- fixed docstring.
This commit is contained in:
cage 2020-12-08 11:31:21 +01:00
parent 51d414d053
commit fe16fc7c1c
3 changed files with 4 additions and 3 deletions

View File

@ -393,6 +393,8 @@
(define-key "r" #'refresh-chat-messages *chats-list-keymap*)
(define-key "R" #'refresh-chats *chats-list-keymap*)
(define-key "q" #'close-chats-list-window *chats-list-keymap*)
(define-key "C-J" #'show-chat-to-screen *chats-list-keymap*)

View File

@ -19,9 +19,8 @@
(defclass follow-requests-window (focus-marked-window simple-line-navigation-window)
((requests
:initarg :requests
:initform nil
:initform ()
:accessor requests
:type (or null tooter:account)
:documentation "All the accounts that request to follow you")
(header-message-lines
:initarg :header-message-lines

View File

@ -1561,7 +1561,7 @@ This command will remove those limits so that we can just jump to the last messa
;;;; chats
(defun refresh-chats ()
"Refresh the chats, but not the chat's messages"
"Refresh the chats lists, but not the chat's messages"
(program-events:push-event (make-instance 'program-events:get-chats-event)))
(defun refresh-chat-messages ()