Skip to content

Commit

Permalink
Improve watermark text
Browse files Browse the repository at this point in the history
  • Loading branch information
i2van committed Oct 31, 2024
1 parent 0fa4ec6 commit 8ed45ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Hourglass.linq
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,11 @@ void Main()

tabControl.SelectionChanged += delegate
{
timersTextBox.Watermark = (string)((TabItem)tabControl.SelectedItem!).Header!;
timersTextBox.Watermark = $"{((TabItem)tabControl.SelectedItem!).Header!} · {(
config.Options.Contains("-mt on")
? @"Specify multiple timers separated by spaces and press Enter. Use double quotation marks for the timers containing spaces, e.g., ""10 Oct 2024"""
: "Specify timer and press Enter"
)}";
};

downloadHourglassButton.Click += async delegate
Expand Down
Binary file modified img/Hourglass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 8ed45ad

Please sign in to comment.