mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-18 15:09:39 +02:00
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:
parent
b238398377
commit
cb74a4bca5
@ -18745,3 +18745,7 @@
|
|||||||
2019-06-05 Fred Gleason <fredg@paravelsystems.com>
|
2019-06-05 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Fixed a bug that caused exported PCM24 WAV files to indicate
|
* Fixed a bug that caused exported PCM24 WAV files to indicate
|
||||||
an incorrect 'dwLevelReference' value in the cart chunk.
|
an incorrect 'dwLevelReference' value in the cart chunk.
|
||||||
|
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.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
//
|
//
|
||||||
// The full log list for RDAirPlay
|
// 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
|
// 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
|
// 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->ensureItemVisible(item);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
list_log_list->sort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -967,6 +968,7 @@ void ListLog::logRemovedData(int line,int num,bool moving)
|
|||||||
if(!moving) {
|
if(!moving) {
|
||||||
UpdateTimes(line,num);
|
UpdateTimes(line,num);
|
||||||
}
|
}
|
||||||
|
list_log_list->sort();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user