forked from cromer/pamac-classic
switch to AUR tab when no result in repos
This commit is contained in:
parent
8f19ea1887
commit
bad4624c3b
@ -1942,7 +1942,16 @@ namespace Pamac {
|
|||||||
hide_sidebar ();
|
hide_sidebar ();
|
||||||
}
|
}
|
||||||
var pkgs = transaction.search_pkgs.end (res);
|
var pkgs = transaction.search_pkgs.end (res);
|
||||||
populate_packages_list (pkgs);
|
if (pkgs.length == 0 && transaction.enable_aur) {
|
||||||
|
packages_list.clear ();
|
||||||
|
transaction.search_in_aur.begin (search_string, (obj, res) => {
|
||||||
|
if (transaction.search_in_aur.end (res).length > 0) {
|
||||||
|
origin_stack.visible_child_name = "aur";
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
populate_packages_list (pkgs);
|
||||||
|
}
|
||||||
});
|
});
|
||||||
aur_list.clear ();
|
aur_list.clear ();
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user