mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
emacs-hello: Do not calculate the count of the messages in hidden sections
The result is that hello screen shows much faster when some sections are hidden.
This commit is contained in:
parent
4b3af0e444
commit
4a0740920d
1 changed files with 10 additions and 10 deletions
|
@ -695,16 +695,16 @@ Supports the following entries in OPTIONS as a plist:
|
|||
(notmuch-hello-update))
|
||||
"hide"))
|
||||
(widget-insert "\n")
|
||||
(let (target-pos
|
||||
(searches (apply 'notmuch-hello-query-counts query-alist options)))
|
||||
(when (and (not is-hidden)
|
||||
(or (not (plist-get options :hide-if-empty))
|
||||
searches))
|
||||
(let (target-pos)
|
||||
(when (not is-hidden)
|
||||
(let ((searches (apply 'notmuch-hello-query-counts query-alist options)))
|
||||
(when (or (not (plist-get options :hide-if-empty))
|
||||
searches)
|
||||
(widget-insert "\n")
|
||||
(setq target-pos
|
||||
(notmuch-hello-insert-buttons searches))
|
||||
(indent-rigidly start (point) notmuch-hello-indent)
|
||||
target-pos))))
|
||||
(indent-rigidly start (point) notmuch-hello-indent))))
|
||||
target-pos)))
|
||||
|
||||
(defun notmuch-hello-insert-tags-section (&optional title &rest options)
|
||||
"Insert a section displaying all tags with message counts.
|
||||
|
|
Loading…
Reference in a new issue