I recently upgraded to org-mode 8.2.5h and now when I update my clock tables, values that are larger than 24h get for instance displayed as: 1d 9:16
. Is there any preference I can set to switch it back to the hours:minutes format. I've searched the documentation but could not find any information regarding this topic.
You should now use org-duration-format
:
(setq org-duration-format (quote h:mm))
for your question.
See https://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00270.html for explanations.
Apparently you can set the org-time-clocksum-format
variable like this:
(setq org-time-clocksum-format (quote (:hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)))
You can set the org-time-clocksum-format
variable like this :
(setq org-time-clocksum-format (quote (:hours "%d" :require-hours t :minutes ":%02d" :require-minutes t)))
You should now use org-duration-format
:
(setq org-duration-format (quote h:mm))
See this for explanations on the update.
See this for the Org-Mode release notes.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With