Make the query editor expand in size less
This commit is contained in:
parent
66e0650f75
commit
3f87c3541f
1 changed files with 2 additions and 2 deletions
|
@ -1730,7 +1730,7 @@ impl Render for ProjectSearchBar {
|
||||||
let search = search.read(cx);
|
let search = search.read(cx);
|
||||||
|
|
||||||
let query_column = v_stack()
|
let query_column = v_stack()
|
||||||
.flex_1()
|
//.flex_1()
|
||||||
.child(
|
.child(
|
||||||
h_stack()
|
h_stack()
|
||||||
.min_w_80()
|
.min_w_80()
|
||||||
|
@ -1868,7 +1868,7 @@ impl Render for ProjectSearchBar {
|
||||||
.child(search.replacement_editor.clone())
|
.child(search.replacement_editor.clone())
|
||||||
} else {
|
} else {
|
||||||
// Fill out the space if we don't have a replacement editor.
|
// Fill out the space if we don't have a replacement editor.
|
||||||
h_stack().size_full()
|
h_stack().flex_1()
|
||||||
};
|
};
|
||||||
let actions_column = h_stack()
|
let actions_column = h_stack()
|
||||||
.when(search.replace_enabled, |this| {
|
.when(search.replace_enabled, |this| {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue