When a recipe is selected, automatically select the package that matches the recipe name (if it exists), otherwise select the first package.
Signed-off-by: Peter Kjellerstedt <[email protected]> --- scripts/oe-pkgdata-browser | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scripts/oe-pkgdata-browser b/scripts/oe-pkgdata-browser index 75d889271b..8d223185a4 100755 --- a/scripts/oe-pkgdata-browser +++ b/scripts/oe-pkgdata-browser @@ -176,12 +176,18 @@ class PkgUi(): return recipe = model[it][RecipeColumns.Recipe] - for package in packages_in_recipe(self.pkgdata, recipe): + packages = packages_in_recipe(self.pkgdata, recipe) + for package in packages: # TODO also show PKG after debian-renaming? data = load_runtime_package(self.pkgdata, package) # TODO stash data to avoid reading in on_package_changed self.package_iters[package] = self.package_store.append([package, int(data["PKGSIZE"])]) + package = recipe if recipe in packages else sorted(packages)[0] + path = self.package_store.get_path(self.package_iters[package]) + self.package_view.set_cursor(path) + self.package_view.scroll_to_cell(path) + def on_package_changed(self, selection): self.label.set_text("") self.file_store.clear() -- 2.21.1 -- _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
