move find bar below editor, above status bar
This commit is contained in:
parent
d50f463ebb
commit
81fdb9146c
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue