diff options
author | marty hiatt <martianhiatus@disroot.org> | 2024-11-02 10:57:33 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@disroot.org> | 2024-11-02 10:57:33 +0100 |
commit | ee25cb9b026a40c320570c09635a476509d81d67 (patch) | |
tree | 2fc3a379acb2018d051b8e5c9652fa5d3108e413 /lisp/mastodon-profile.el | |
parent | 16779f582042eb721905e7532ca02cbbeaeab24e (diff) |
update point after widget. FIX #615
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index c16d88d..1ce8747 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -745,7 +745,6 @@ MAX-ID is a flag to include the max_id pagination parameter." "\n\n") 'success) "")))) ; for insert call - (setq mastodon-tl--update-point (point)) (mastodon-media--inline-images (point-min) (point)) ;; widget items description (mastodon-widget--create @@ -756,7 +755,8 @@ MAX-ID is a flag to include the max_id pagination parameter." (lambda (widget &rest _ignore) (let ((value (widget-value widget))) (mastodon-profile--view-fun-call value)))) - (insert "\n"))) + (insert "\n") + (setq mastodon-tl--update-point (point)))) ;; split insert of items from insert of profile: (with-current-buffer buffer (let* ((inhibit-read-only t)) |