branch: externals/org-real
commit 0b764c7e1bfec93538f23bc8bf8526d5dda48e95
Author: Tyler Grinn <tylergr...@gmail.com>
Commit: Tyler Grinn <tylergr...@gmail.com>

    get-width compares children with margins included
---
 org-real.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-real.el b/org-real.el
index 557b689..00c9b48 100644
--- a/org-real.el
+++ b/org-real.el
@@ -576,7 +576,7 @@ OFFSET is the starting line to start insertion."
                                 (+ total (car org-real--margin) width))
                               column-widths
                               (* -1 (car org-real--margin)))))
-        (if (> width children-width)
+        (if (> width (+ (* 2 (car org-real--margin)) children-width))
             width
           (+ base-width children-width))))))
 

Reply via email to