From 81fdb9146cd1fbfe32094bfffec2f0fc8558e1cb Mon Sep 17 00:00:00 2001 From: jess Date: Wed, 8 Apr 2026 03:42:47 -0700 Subject: [PATCH] move find bar below editor, above status bar --- viewport/src/editor.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/viewport/src/editor.rs b/viewport/src/editor.rs index 7d9855f..a5a9739 100644 --- a/viewport/src/editor.rs +++ b/viewport/src/editor.rs @@ -806,11 +806,12 @@ impl EditorState { let mut col_items: Vec> = Vec::new(); + col_items.push(main_content); + if self.find.visible { col_items.push(self.find_bar()); } - col_items.push(main_content); col_items.push(status_bar.into()); iced_widget::column(col_items)