Skip to content

Commit

Permalink
Fixed Morphman stats in Stats page (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
mortii committed Aug 17, 2023
1 parent 6062649 commit d6ede7e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ def main():

gui_hooks.profile_did_open.append(replace_reviewer_functions)

# See more detailed morph stats by holding 'Shift'-key while pressing 'Stats' in toolbar
# TODO: maybe move it somewhere less hidden if possible? E.g.a separate toolbar button
gui_hooks.profile_did_open.append(add_morph_stats_to_ease_graph)

# This stores the focus morphs seen today, necessary for the respective skipping option to work
gui_hooks.reviewer_did_answer_card.append(mark_morph_seen)

# Adds the 'K: V:' to the toolbar
gui_hooks.top_toolbar_did_init_links.append(add_morph_stats_to_toolbar)

# See more detailed morph stats by holding 'Shift'-key while pressing 'Stats' in toolbar
# TODO: maybe move it somewhere less hidden if possible? E.g.a separate toolbar button
gui_hooks.stats_dialog_will_show(add_morph_stats_to_ease_graph)

gui_hooks.profile_will_close.append(tear_down_actions_and_submenu)


Expand Down

0 comments on commit d6ede7e

Please sign in to comment.