From 0f00dcf7a7c443ca58b692734d897bd766b883b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Lo=CC=81pez=20Guevara?= Date: Thu, 24 Jul 2025 15:57:42 -0300 Subject: [PATCH 1/2] fix(columns): render wide notes on narrow screen --- crates/notedeck_columns/src/app.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/crates/notedeck_columns/src/app.rs b/crates/notedeck_columns/src/app.rs index 6a9ae993..a9388cef 100644 --- 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 { + 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 { From f2e01f0e4035130f228b9092bef8c204cef0f936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Lo=CC=81pez=20Guevara?= Date: Fri, 25 Jul 2025 12:13:39 -0300 Subject: [PATCH 2/2] =?UTF-8?q?fix(note=5Factionbar):=20add=20invisible=20?= =?UTF-8?q?label=20to=20stabilize=20section=20width=20=C2=AF\=5F(=E3=83=84?= =?UTF-8?q?)=5F/=C2=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/notedeck_ui/src/note/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/notedeck_ui/src/note/mod.rs b/crates/notedeck_ui/src/note/mod.rs index 7a4467ff..2468290a 100644 --- a/crates/notedeck_ui/src/note/mod.rs +++ b/crates/notedeck_ui/src/note/mod.rs @@ -782,6 +782,7 @@ fn render_note_actionbar( i18n: &mut Localization, ) -> egui::InnerResponse> { ui.horizontal(|ui| { + ui.label(RichText::new("").text_style(egui::TextStyle::Small)); ui.set_min_height(26.0); ui.spacing_mut().item_spacing.x = 24.0;