emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/org 55cf527: org: Image display, account for line numbe


From: ELPA Syncer
Subject: [elpa] externals/org 55cf527: org: Image display, account for line number width
Date: Wed, 29 Sep 2021 09:57:21 -0400 (EDT)

branch: externals/org
commit 55cf527375081092fe497535f24c57bda8e4d22b
Author: TEC <tec@tecosaur.com>
Commit: TEC <tec@tecosaur.com>

    org: Image display, account for line number width
    
    * lisp/org.el (org-display-inline-image--width): To be slightly more
    accurate when calculating image widths that are proportional to the text
    width in the current buffer, subtract the width taken up by line numbers.
---
 lisp/org.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/org.el b/lisp/org.el
index 2ec6566..405f0f0 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -16679,7 +16679,7 @@ buffer boundaries with possible narrowing."
                     (/ (or (and (bound-and-true-p visual-fill-column-mode)
                                 (or visual-fill-column-width 
auto-fill-function))
                            (when auto-fill-function fill-column)
-                           (window-text-width))
+                           (- (window-text-width) display-line-numbers-width))
                        (float (window-total-width)))))
         width)))
    ((numberp org-image-actual-width)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]