Skip to content

Commit

Permalink
Fix the success dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrolcl committed Nov 28, 2019
1 parent d6d7469 commit bdac3c1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion barnatrees/qml/HomePage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,9 @@ Page {
if (pendingTreeTip) {
showBalloonTip(plantModel.nearestRow())
}
resultsFoundDialog.open()
if (numberOfRows > 0) {
resultsFoundDialog.open()
}
}
}

Expand Down

0 comments on commit bdac3c1

Please sign in to comment.