From 3d38510284ce8cb30e443ffff4bedab44d802387 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 16 Nov 2024 09:33:42 +0100 Subject: [PATCH] Readd duplicate call to `org-fold-reveal` This reverts 05bb198. Turns out this call is not that redundant after all. Revealing should be done after jumping to the next checkbox of the current item. However, revealing the item at point only then leads to funny flickering, so let's keep the old implementation for now and reveal stuff twice. --- site-lisp/db-org.el | 1 + 1 file changed, 1 insertion(+) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 28ce739..940cbf3 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -1681,6 +1681,7 @@ clocked-in tasks to jump to." (org-fold-reveal) (org-fold-hide-drawer-all) (db/org-goto-first-open-checkbox-in-headline :silent) + (org-fold-reveal) (if recent (message "No running clock, this is the most recently clocked task")) (run-hooks 'org-clock-goto-hook))