Skip to content

Commit

Permalink
Fix/tooltip not display
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock committed Apr 22, 2024
1 parent 14958e0 commit 3d5a2bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion schedule/disperse_siblings.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def disperse_siblings_backgroud(
undo_entry = mw.col.add_custom_undo_entry("Disperse Siblings")
mw.taskman.run_on_main(
lambda: mw.progress.start(
label="Siblings Dispersing", max=sibilings_cnt, immediate=False
label="Siblings Dispersing", max=sibilings_cnt, immediate=True
)
)

Expand Down
2 changes: 1 addition & 1 deletion schedule/reschedule.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def reschedule_background(
total_cnt = len(cards)
undo_entry = mw.col.add_custom_undo_entry("Reschedule")
mw.taskman.run_on_main(
lambda: mw.progress.start(label="Rescheduling", max=total_cnt, immediate=False)
lambda: mw.progress.start(label="Rescheduling", max=total_cnt, immediate=True)
)
# x[0]: cid
# x[1]: did
Expand Down

0 comments on commit 3d5a2bf

Please sign in to comment.