Skip to content

Commit

Permalink
Replacement of the symbol ❓ with ⓘ (#262)
Browse files Browse the repository at this point in the history
Changing the text `❓ Discord Report Preview` to `Discord Report Preview ⓘ` (line 85).
The aim is to make it more understandable that if clicked it shows a tooltip with the legend of the symbols that can be emitted in Discord messages.

Changing the text will require a revision of the translations.
  • Loading branch information
GLWine authored Jul 1, 2024
1 parent ac544da commit 0fca594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bgstally/windows/activity.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def show(self, activity: Activity):
frm_discord.pack(fill=tk.X, side=tk.BOTTOM, padx=5, pady=5)
frm_discord.columnconfigure(0, weight=2)
frm_discord.columnconfigure(1, weight=1)
lbl_discord_report:ttk.Label = ttk.Label(frm_discord, text=_("Discord Report Preview"), font=FONT_HEADING_2, cursor="hand2") # LANG: Label on activity window
lbl_discord_report:ttk.Label = ttk.Label(frm_discord, text=_("Discord Report Preview"), font=FONT_HEADING_2, cursor="hand2") # LANG: Label on activity window
lbl_discord_report.grid(row=0, column=0, sticky=tk.W)
lbl_discord_report.bind("<Button-1>", self._show_legend_window)
ToolTip(lbl_discord_report, text=_("Show legend window")) # LANG: Activity window tooltip
Expand Down

0 comments on commit 0fca594

Please sign in to comment.