2020-12-18 Fred Gleason <fredg@paravelsystems.com>

* Fixed a regression in rdlogedit(1) that caused changing the
	Start Time type to trigger a request for a save.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2020-12-18 08:20:40 -05:00
parent cf6e68bd63
commit f149a73cdf
2 changed files with 7 additions and 0 deletions

View File

@ -20707,3 +20707,6 @@
2020-12-17 Fred Gleason <fredg@paravelsystems.com>
* Reimplemented the right-click menu in the 'Voice Tracker' dialog
in rdlogedit(1).
2020-12-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdlogedit(1) that caused changing the
Start Time type to trigger a request for a save.

View File

@ -669,7 +669,11 @@ void EditLog::endDateEnabledData(bool state)
void EditLog::timestyleChangedData(int index)
{
bool changed=edit_changed;
edit_log_model->setStartTimeStyle((RDLogModel::StartTimeStyle)index);
if(!changed) {
SetLogModified(false);
}
}