emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals-release/activities 43c4524b47 025/103: Fix: (activity-s


From: ELPA Syncer
Subject: [elpa] externals-release/activities 43c4524b47 025/103: Fix: (activity-switch) Set frame name, call make-frame correctly
Date: Tue, 30 Jan 2024 03:57:47 -0500 (EST)

branch: externals-release/activities
commit 43c4524b47ae8eef2d9c6b753805683d87b02059
Author: Adam Porter <adam@alphapapa.net>
Commit: Adam Porter <adam@alphapapa.net>

    Fix: (activity-switch) Set frame name, call make-frame correctly
---
 activity.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/activity.el b/activity.el
index 09a84fc238..cce0172031 100644
--- a/activity.el
+++ b/activity.el
@@ -362,7 +362,9 @@ closed."
 Select's ACTIVITY's frame, making a new one if needed.  Its state
 is not changed."
   (select-frame (or (activity--frame activity)
-                    (make-frame `(activity . ,activity))))
+                    (make-frame `((activity . ,activity)))))
+  (set-frame-name (activity-name-for activity))
+  ;; Not sure if calling `redisplay' is necessary.
   (redisplay))
 
 (defun activity--frame (activity)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]