branch: externals/org
commit 6666f4501a18de995384c12634d36103f009639f
Author: Jacob S. Gordon <[email protected]>
Commit: Ihor Radchenko <[email protected]>
; org-mouse: Fix action to show priority in the agenda
* lisp/org-mouse.el (org-mouse-context-menu): Use 'org-priority-show'
and mention that the priority is weighted in the menu text.
---
lisp/org-mouse.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lisp/org-mouse.el b/lisp/org-mouse.el
index 89432c7f79..1487c8ed9c 100644
--- a/lisp/org-mouse.el
+++ b/lisp/org-mouse.el
@@ -823,8 +823,8 @@ This means, between the beginning of line and the point."
["Show Tags"
(with-current-buffer org-mouse-main-buffer (org-agenda-show-tags))
:visible (not org-mouse-direct)]
- ["Show Priority"
- (with-current-buffer org-mouse-main-buffer (org-agenda-show-priority))
+ ["Show Weighted Priority"
+ (with-current-buffer org-mouse-main-buffer (org-priority-show))
:visible (not org-mouse-direct)]
,@(if org-mouse-direct '("--") nil)
["New Heading" org-mouse-insert-heading :visible org-mouse-direct]