fix(note_actionbar): add invisible label to stabilize section width ¯\_(ツ)_/¯

This commit is contained in:
Fernando López Guevara
2025-07-25 12:13:39 -03:00
parent 0f00dcf7a7
commit f2e01f0e40

View File

@@ -782,6 +782,7 @@ fn render_note_actionbar(
i18n: &mut Localization, i18n: &mut Localization,
) -> egui::InnerResponse<Option<NoteAction>> { ) -> egui::InnerResponse<Option<NoteAction>> {
ui.horizontal(|ui| { ui.horizontal(|ui| {
ui.label(RichText::new("").text_style(egui::TextStyle::Small));
ui.set_min_height(26.0); ui.set_min_height(26.0);
ui.spacing_mut().item_spacing.x = 24.0; ui.spacing_mut().item_spacing.x = 24.0;