1
0
Fork 0

- [gemini] forced redraw of the window when rendering a new gemini stream.

This commit is contained in:
cage 2021-06-27 13:27:15 +02:00
parent 5e3c19811b
commit 6ffb2c5cc1
1 changed files with 3 additions and 2 deletions

View File

@ -1164,8 +1164,9 @@
(multiple-value-bind (x start length)
(message-window:visible-rows win)
(declare (ignore x))
(when (< (+ start length)
(windows:win-height-no-border win))
(when (or (not append-text)
(< (+ start length)
(windows:win-height-no-border win)))
(windows:draw win))))))))
(defclass gemini-abort-downloading-event (program-event) ())