Skip to content

Commit

Permalink
Fix/tooltip not display (#394)
Browse files Browse the repository at this point in the history
Co-authored-by: user1823 <[email protected]>
  • Loading branch information
L-M-Sherlock and user1823 committed Apr 24, 2024
1 parent ffd0273 commit 6b56930
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="Dispersing Siblings", 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 @@ -220,7 +220,7 @@ def reschedule_background(
total_cnt = len(cid_did_nid)
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 6b56930

Please sign in to comment.