mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-24 17:28:40 +00:00
search: Reorder items in search bar (#3039)
Release Notes: - Reordered items in project and buffer search bar
This commit is contained in:
parent
edf29aa67d
commit
6ccaf55e54
2 changed files with 2 additions and 2 deletions
|
@ -347,9 +347,9 @@ impl View for BufferSearchBar {
|
|||
|
||||
Flex::row()
|
||||
.with_child(query_column)
|
||||
.with_child(mode_column)
|
||||
.with_children(switches_column)
|
||||
.with_children(replacement)
|
||||
.with_child(mode_column)
|
||||
.with_child(nav_column)
|
||||
.contained()
|
||||
.with_style(theme.search.container)
|
||||
|
|
|
@ -1958,9 +1958,9 @@ impl View for ProjectSearchBar {
|
|||
|
||||
Flex::row()
|
||||
.with_child(query_column)
|
||||
.with_child(mode_column)
|
||||
.with_child(switches_column)
|
||||
.with_children(replacement)
|
||||
.with_child(mode_column)
|
||||
.with_child(nav_column)
|
||||
.contained()
|
||||
.with_style(theme.search.container)
|
||||
|
|
Loading…
Reference in a new issue