emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#68374: closed (min-width is not correctly treated by buffer-text-pix


From: GNU bug Tracking System
Subject: bug#68374: closed (min-width is not correctly treated by buffer-text-pixel-size)
Date: Sun, 11 Feb 2024 13:24:01 +0000

Your message dated Sun, 11 Feb 2024 15:22:57 +0200
with message-id <86o7cnrv7y.fsf@gnu.org>
and subject line Re: bug#68374: min-width is not correctly treated by 
buffer-text-pixel-size
has caused the debbugs.gnu.org bug report #68374,
regarding min-width is not correctly treated by buffer-text-pixel-size
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
68374: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68374
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: min-width is not correctly treated by buffer-text-pixel-size Date: Wed, 10 Jan 2024 17:22:53 -0500
When the ‘display min-width property is used on characters in a buffer, 
window/buffer-text-pixel-size does not include this min-width padding in its 
calculation of the text's pixel width.  

This can be seen by using a range of minimum character widths and noticing that 
the width is identical; see below.  Other ‘display properties like space :width 
and space :align-to do seem to be correctly handled by pixel size calculations. 

This is relevant because various elements on the mode-line use ‘display 
min-width, so performing pixel alignment on the mode-line text is impacted.

+++

(eval-when-compile 'cl-lib)
(cl-loop
 for w from 0. to 100. by 20. 
 collect
 (with-current-buffer (get-buffer-create "*pixel-sizes*")
   (erase-buffer)
   (insert ">>>" (propertize " " 'display `(min-width (,w))) "<<<")
   (cons w (buffer-text-pixel-size))))
  
;; ((0 49 . 14) (20 49 . 14) (40 49 . 14) (60 49 . 14) (80 49 . 14) (100 49 . 
14))


--- End Message ---
--- Begin Message --- Subject: Re: bug#68374: min-width is not correctly treated by buffer-text-pixel-size Date: Sun, 11 Feb 2024 15:22:57 +0200
> From: JD Smith <jdtsmith@gmail.com>
> Date: Sun, 11 Feb 2024 07:20:21 -0500
> Cc: 68374@debbugs.gnu.org
> 
> I haven't noticed anything unusual in a couple weeks of use, so please do.  
> Thanks.

Thanks, installed on master, and closing the bug.


--- End Message ---

reply via email to

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