move find bar below editor, above status bar

This commit is contained in:
jess 2026-04-08 03:42:47 -07:00
parent d50f463ebb
commit 81fdb9146c
1 changed files with 2 additions and 1 deletions

View File

@ -806,11 +806,12 @@ impl EditorState {
let mut col_items: Vec<Element<'_, Message, Theme, iced_wgpu::Renderer>> = 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)