nandi/frqpublic Fork 0
d559f7a
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

Count what sits under the conversation, rather than guess it

124 was short: the column ran past the bottom edge, which does not show as
a list that is too long but as a compose bar flat on the bottom of the
window with its margin cut off.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
nandi committed 2026-08-30T19:33:32-07:00 Browse files
d559f7a parent: db958d8
modified src/frq/app.jolt +7 -1
@@ -859,7 +859,13 @@
859859 ;; because the reader just asked for something — unlike the jump button, which
860860 ;; appears on its own and must not shift what is under it.
861861 (defn- below-messages []
862- (+ 124
862+ ;; 140 is that, counted: the gap under the row of columns, the jump button's
863+ ;; 34pt row, the separator and the two empty wrappers with a gap apiece, then
864+ ;; the compose row and the air under it — its own and the window's. Short by
865+ ;; any of it and the column runs past the bottom edge, which does not show as
866+ ;; a list that is too long: it shows as a compose bar sitting flat on the
867+ ;; bottom of the window with its margin cut off.
868+ (+ 140
863869 (if @s/replying-to 34 0)
864870 (if @s/attachment 76 0)))
865871
@@ -859,7 +859,13 @@
859 ;; because the reader just asked for something — unlike the jump button, which859 ;; because the reader just asked for something — unlike the jump button, which
860 ;; appears on its own and must not shift what is under it.860 ;; appears on its own and must not shift what is under it.
861 (defn- below-messages []861 (defn- below-messages []
862- (+ 124862+ ;; 140 is that, counted: the gap under the row of columns, the jump button's
863+ ;; 34pt row, the separator and the two empty wrappers with a gap apiece, then
864+ ;; the compose row and the air under it — its own and the window's. Short by
865+ ;; any of it and the column runs past the bottom edge, which does not show as
866+ ;; a list that is too long: it shows as a compose bar sitting flat on the
867+ ;; bottom of the window with its margin cut off.
868+ (+ 140
863 (if @s/replying-to 34 0)869 (if @s/replying-to 34 0)
864 (if @s/attachment 76 0)))870 (if @s/attachment 76 0)))
865 871