mirror of
https://codeberg.org/cage/tinmop/
synced 2024-12-17 23:18:28 +01:00
- exposed to the UI 'refresh-chats';
- fixed type in 'follow-request-window' slot; - fixed docstring.
This commit is contained in:
parent
51d414d053
commit
fe16fc7c1c
@ -393,6 +393,8 @@
|
|||||||
|
|
||||||
(define-key "r" #'refresh-chat-messages *chats-list-keymap*)
|
(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 "q" #'close-chats-list-window *chats-list-keymap*)
|
||||||
|
|
||||||
(define-key "C-J" #'show-chat-to-screen *chats-list-keymap*)
|
(define-key "C-J" #'show-chat-to-screen *chats-list-keymap*)
|
||||||
|
@ -19,9 +19,8 @@
|
|||||||
(defclass follow-requests-window (focus-marked-window simple-line-navigation-window)
|
(defclass follow-requests-window (focus-marked-window simple-line-navigation-window)
|
||||||
((requests
|
((requests
|
||||||
:initarg :requests
|
:initarg :requests
|
||||||
:initform nil
|
:initform ()
|
||||||
:accessor requests
|
:accessor requests
|
||||||
:type (or null tooter:account)
|
|
||||||
:documentation "All the accounts that request to follow you")
|
:documentation "All the accounts that request to follow you")
|
||||||
(header-message-lines
|
(header-message-lines
|
||||||
:initarg :header-message-lines
|
:initarg :header-message-lines
|
||||||
|
@ -1561,7 +1561,7 @@ This command will remove those limits so that we can just jump to the last messa
|
|||||||
;;;; chats
|
;;;; chats
|
||||||
|
|
||||||
(defun refresh-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)))
|
(program-events:push-event (make-instance 'program-events:get-chats-event)))
|
||||||
|
|
||||||
(defun refresh-chat-messages ()
|
(defun refresh-chat-messages ()
|
||||||
|
Loading…
Reference in New Issue
Block a user