Skip to content

Commit

Permalink
Add missing modes for show_message() (#1401)
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j authored Jan 20, 2025
1 parent 62fc39e commit c577be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tauon/t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2611,7 +2611,7 @@ def show_message(line1: str, line2: str ="", line3: str = "", mode: str = "info"
gui.message_subtext2 = line3
message_box_min_timer.set()
match mode:
case "done" | "confirm":
case "done" | "confirm" | "arrow" | "download" | "bubble" | "link":
logging.debug("Message: " + line1 + line2 + line3)
case "info":
logging.info("Message: " + line1 + line2 + line3)
Expand Down

0 comments on commit c577be5

Please sign in to comment.