Fix bug in AM/PM option setting for existing reminders.

This commit is contained in:
David F. Skoll
2008-03-09 11:23:27 -04:00
parent fe8e34dece
commit d818dd9c80

View File

@@ -1358,7 +1358,9 @@ proc OptionsToRemindDialog { w opts } {
$w.timehour configure -text $hour
$w.ampm configure -text "PM"
} else {
$w.ampm configure -text "AM"
if {"$ampm" == ""} {
$w.ampm configure -text "AM"
}
}
}
}