add label to learning column in deck browser

'Learn' rather than 'Learning' to reduce the width of the column.

Closes #1634
This commit is contained in:
Damien Elmes 2022-02-16 10:23:57 +10:00
parent 91e8f73b69
commit 94846dc4e3

View file

@ -178,11 +178,12 @@ class DeckBrowser:
buf = """ buf = """
<tr><th colspan=5 align=start>{}</th> <tr><th colspan=5 align=start>{}</th>
<th class=count>{}</th> <th class=count>{}</th>
<th class=count></th> <th class=count>{}</th>
<th class=count>{}</th> <th class=count>{}</th>
<th class=optscol></th></tr>""".format( <th class=optscol></th></tr>""".format(
tr.decks_deck(), tr.decks_deck(),
tr.actions_new(), tr.actions_new(),
tr.card_stats_review_log_type_learn(),
tr.statistics_due_count(), tr.statistics_due_count(),
) )
buf += self._topLevelDragRow() buf += self._topLevelDragRow()