notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 1a7154fab64e11db1ea5178c390fcbc375a90f55
parent 61f4d6b532b87a85f5dee97f3bcad9e3884cd1f4
Author: William Casarin <jb55@jb55.com>
Date:   Thu, 17 Jul 2025 11:02:16 -0700

reply: add some space after reply box

we need more room on mobile

Fixes: https://github.com/damus-io/notedeck/issues/991
Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcrates/notedeck_columns/src/ui/note/reply.rs | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/crates/notedeck_columns/src/ui/note/reply.rs b/crates/notedeck_columns/src/ui/note/reply.rs @@ -111,6 +111,15 @@ impl<'a, 'd> PostReplyView<'a, 'd> { ui, ); + // + // NOTE(jb55): We add some space so that you can scroll to + // put the input box higher. This can happen in some + // situations where the input box gets covered or if its too + // large and things start breaking. I think this is an ok + // solution but there could be a better one. + // + ui.add_space(500.0); + post_response }) .inner