mirror of
https://github.com/overte-org/community-apps.git
synced 2025-04-06 19:02:42 +02:00
Fix app search.
This commit is contained in:
parent
574f6b6a70
commit
77bdd9d5cb
1 changed files with 6 additions and 6 deletions
|
@ -54,13 +54,13 @@ Rectangle {
|
|||
id: search_query
|
||||
onAccepted: {
|
||||
if (current_page == "app_list"){
|
||||
searchList(search_query.text, installed_apps);
|
||||
return;
|
||||
}
|
||||
if (current_page == "repos"){
|
||||
searchList(search_query.text, repo_list);
|
||||
searchList(search_query.text, app_listings);
|
||||
return;
|
||||
}
|
||||
// if (current_page == "repos"){
|
||||
// searchList(search_query.text, repo_list);
|
||||
// return;
|
||||
// }
|
||||
}
|
||||
MouseArea {
|
||||
anchors.fill: parent
|
||||
|
@ -896,7 +896,7 @@ Rectangle {
|
|||
|
||||
// Searching
|
||||
function searchList(text, element){
|
||||
|
||||
|
||||
for (var i = 0; i < element.count; i++) {
|
||||
var app = element.get(i);
|
||||
|
||||
|
|
Loading…
Reference in a new issue