2019-06-07 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdairplay(1) that caused changes in the ordering
	of log events to fail to be properly reflected in the Full Log
	list.
This commit is contained in:
Fred Gleason
2019-06-07 17:46:34 -04:00
parent b238398377
commit cb74a4bca5
2 changed files with 7 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
//
// The full log list for RDAirPlay
//
// (C) Copyright 2002-2018 Fred Gleason <fredg@paravelsystems.com>
// (C) Copyright 2002-2019 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
@@ -948,6 +948,7 @@ void ListLog::logInsertedData(int line)
list_log_list->ensureItemVisible(item);
}
}
list_log_list->sort();
}
@@ -967,6 +968,7 @@ void ListLog::logRemovedData(int line,int num,bool moving)
if(!moving) {
UpdateTimes(line,num);
}
list_log_list->sort();
}