notedeck

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

commit 0f00dcf7a7c443ca58b692734d897bd766b883b5
parent 4e27c1f491ba5e9111c3e8478933b735b8ee8e02
Author: Fernando López Guevara <fernando.lguevara@gmail.com>
Date:   Thu, 24 Jul 2025 15:57:42 -0300

fix(columns): render wide notes on narrow screen

Diffstat:
Mcrates/notedeck_columns/src/app.rs | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/crates/notedeck_columns/src/app.rs b/crates/notedeck_columns/src/app.rs @@ -361,6 +361,10 @@ fn render_damus( app_ctx: &mut AppContext<'_>, ui: &mut egui::Ui, ) -> Option<AppAction> { + damus + .note_options + .set(NoteOptions::Wide, is_narrow(ui.ctx())); + let app_action = if notedeck::ui::is_narrow(ui.ctx()) { render_damus_mobile(damus, app_ctx, ui) } else {