From 29f59459d2dba675a44417c6dcfd8c23db2b76c4 Mon Sep 17 00:00:00 2001 From: kernelkind Date: Wed, 13 Aug 2025 19:14:11 -0400 Subject: [PATCH] add toolbar defaults Signed-off-by: kernelkind --- crates/notedeck_columns/src/app.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/crates/notedeck_columns/src/app.rs b/crates/notedeck_columns/src/app.rs index 3a6647a..5661f91 100644 --- a/crates/notedeck_columns/src/app.rs +++ b/crates/notedeck_columns/src/app.rs @@ -573,6 +573,14 @@ impl Damus { pub fn unrecognized_args(&self) -> &BTreeSet { &self.unrecognized_args } + + pub fn toolbar_height() -> f32 { + 48.0 + } + + pub fn initially_selected_toolbar_index() -> i32 { + 0 + } } fn get_note_options(args: ColumnsArgs, settings_handler: &mut SettingsHandler) -> NoteOptions {