From a48bad9999e4127e7678ce50218a7e193b1070d3 Mon Sep 17 00:00:00 2001 From: derrod Date: Fri, 7 Jan 2022 17:35:04 +0100 Subject: [PATCH] [cli] Show app-compatible bottles as recommended rather than default --- legendary/cli.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/legendary/cli.py b/legendary/cli.py index 92ae73d..cd018f8 100644 --- a/legendary/cli.py +++ b/legendary/cli.py @@ -2247,11 +2247,10 @@ class LegendaryCLI: for i, bottle in enumerate(usable_bottles, start=1): extra = [] - if not default_choice and cx_version in bottle['cx_versions']: + if cx_version in bottle['cx_versions']: if app_name in bottle['compatible_apps']: - default_choice = i - extra.append('default') - elif bottle['is_default']: + extra.append('recommended') + if not default_choice and bottle['is_default']: default_choice = i extra.append('default')