Increase the limit at which the languages are expanded when searching for a recipe

This commit is contained in:
Kovid Goyal 2021-05-10 06:19:07 +05:30
parent f48028aec4
commit 24c5feff3e
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -402,7 +402,7 @@ class SchedulerDialog(QDialog):
self.recipe_model = None self.recipe_model = None
def search_done(self, *args): def search_done(self, *args):
if self.recipe_model.showing_count < 10: if self.recipe_model.showing_count < 20:
self.recipes.expandAll() self.recipes.expandAll()
def toggle_schedule_info(self, *args): def toggle_schedule_info(self, *args):