Skip to content

Commit

Permalink
Fix search bar results' group styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nirvn committed Nov 21, 2024
1 parent 03e3ab6 commit 648c505
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/qml/LocatorItem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -440,8 +440,8 @@ Item {
Rectangle {
id: delegateRect

property bool isGroup: ResultFilterGroupSorting === 0
property bool isFilterName: ResultType === 0
property bool isGroup: ResultType !== undefined && ResultType === 1
property bool isFilterName: ResultType !== undefined && ResultType === 0
property int resultIndex: index

anchors.margins: 10
Expand Down Expand Up @@ -502,8 +502,8 @@ Item {
Row {
id: actionsRow
anchors.right: parent.right
anchors.top: parent.top
height: parent.height
anchors.verticalCenter: parent.verticalCenter
height: 32
anchors.rightMargin: 1

Repeater {
Expand Down

1 comment on commit 648c505

@qfield-fairy
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.