mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 15:37:27 -06:00
Fix height of search bar
Because this item is in a layout, the height gets overridden. We should use the preferredHeight, or the one it defaults to, implicitHeight. Contributes to issue CURA-8009.
This commit is contained in:
parent
bec83920e4
commit
7fdf1dbdd4
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ Item
|
||||||
{
|
{
|
||||||
id: searchBar
|
id: searchBar
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: createNewProjectButton.height
|
implicitHeight: createNewProjectButton.height
|
||||||
|
|
||||||
onTextEdited: manager.projectFilter = text //Update the search filter when editing this text field.
|
onTextEdited: manager.projectFilter = text //Update the search filter when editing this text field.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue