mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 04:55:10 +01:00
Don't bypass candidate selection in timid mode. Always show all candidates.
Saves paranoid and interested users from having to either force all max recommendations to none or constantly go back to candidate selection from a recommendation to see if there is another slightly less similar but more preferred (by the user) candidate.
This commit is contained in:
parent
2c175faa46
commit
b02974f68f
2 changed files with 2 additions and 1 deletions
|
|
@ -466,7 +466,7 @@ def choose_candidate(candidates, singleton, rec, cur_artist=None,
|
|||
|
||||
# Is the change good enough?
|
||||
bypass_candidates = False
|
||||
if rec != recommendation.none:
|
||||
if rec != recommendation.none and not config['import']['timid']:
|
||||
match = candidates[0]
|
||||
bypass_candidates = True
|
||||
|
||||
|
|
|
|||
|
|
@ -72,6 +72,7 @@ Changelog
|
|||
together for better readability.
|
||||
* Don't show potential matches that have specific penalties applied, as
|
||||
configured by the :ref:`ignored` setting.
|
||||
* Don't bypass candidate selection in timid mode. Always show all candidates.
|
||||
|
||||
* Improve calculation of similarity score and recommendation:
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue