Include TkRemind version in title bar.
All checks were successful
Remind unit tests / tests (push) Successful in 30s

This commit is contained in:
Dianne Skoll
2024-10-15 14:59:09 -04:00
parent 405398b226
commit 636ae8f21a

View File

@@ -1106,9 +1106,9 @@ proc ConfigureCalWindow { month year firstDay numDays } {
global Hostname
.h.title configure -text "$month $year"
if {[info exists Hostname]} {
wm title . "$month $year - TkRemind on $Hostname"
wm title . "$month $year - TkRemind @VERSION@ on $Hostname"
} else {
wm title . "$month $year - TkRemind"
wm title . "$month $year - TkRemind @VERSION@"
}
wm iconname . "$month $year"
ConfigureCalFrame .cal $firstDay $numDays