branch: elpa/org-journal
commit a306f76ee2b0292946a20530bd9114aefc85a263
Merge: ac0832f02a cb24a8af77
Author: Bastian Bechtold <bast...@users.noreply.github.com>
Commit: GitHub <nore...@github.com>

    Merge pull request #419 from kizifumoli/hide-entries-fix
    
    Fix bug that hid previous date entries.
---
 org-journal.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-journal.el b/org-journal.el
index 4d771ab59e..8b51a36e5e 100644
--- a/org-journal.el
+++ b/org-journal.el
@@ -1381,7 +1381,7 @@ from oldest to newest."
       (progn
         (org-up-heading-safe)
         (org-back-to-heading)
-        (outline-hide-other)
+        (if org-journal-hide-entries-p (outline-hide-other))
         (outline-show-subtree))
     (outline-show-all)))
 

Reply via email to