GNU bug report logs -
#31904
27.0.50; Emacs doesn't render text/modeline Mac OSX 10.14 Mojave
Previous Next
Full log
Message #38 received at 31904 <at> debbugs.gnu.org (full text, mbox):
> On Aug 19, 2018, at 2:59 AM, Alan Third <alan <at> idiocy.org> wrote:
>
> On Sat, Aug 18, 2018 at 12:23:02PM -0700, zentrope <at> fastmail.fm wrote:
>> Another wrinkle (emacs-26 with patch applied):
>>
>> When I change my font, all the text disappears except for the current line.
>>
>> The text comes back if:
>>
>> - I move the cursor over the affected areas.
>> - I wait a bit (from the cursor line down renders).
>> - Switch away to a non-Emacs window.
>>
>> Seems like as soon as there’s a reason to paint the screen, it comes back.
>
> I take it the frame changes size when you change font?
>
> If you evaluate this does the frame redraw right?
>
> (set-frame-width nil 103)
The frame’s size does not change (if you mean the window gets narrower for a narrower font, say).
The set-frame-width expression doesn’t make any difference when I change from Monoco to Menlo and back.
Another interesting thing:
* The problem does NOT occur when changing the size of the font.
* If I change the font (to Monaco), the screen blanks, but immediately running a command to change the font size “fixes” it.
Seems that the font-change isn’t triggering a “repaint the whole thing”, rather, just repaint the line containing the pointer.
Functions involved in font-size change (really just set-face-attribute):
(defun kfi/set-font-size (size)
"Set the font SIZE."
(interactive "nNew size: ")
(set-face-attribute 'default nil :height size))
(defun kfi/font-size-up ()
"Shift font size up by 10 units."
(interactive)
(kfi/set-font-size (+ (face-attribute 'default :height) 10)))
(defun kfi/font-size-down ()
"Shift font size down by 10 units."
(interactive)
(kfi/set-font-size (- (face-attribute 'default :height) 10)))
This bug report was last modified 5 years and 95 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.