2020-06-08 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdairplay(1) where a paused event could not be
	removed by dropping the empty cart on it.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2020-06-08 09:58:25 -04:00
parent cb9ee9af5a
commit aed6e5b6bc
2 changed files with 6 additions and 1 deletions

View File

@ -19861,3 +19861,6 @@
* Fixed a regression in rdairplay(1) that caused the 'Forced Segue'
setting in rdadmin(1) to be ignored when executing an event with
a hard start attribute.
2020-06-08 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) where a paused event could not be
removed by dropping the empty cart on it.

View File

@ -834,7 +834,9 @@ void LogLineBox::paintEvent(QPaintEvent *e)
void LogLineBox::dragEnterEvent(QDragEnterEvent *e)
{
e->accept(RDCartDrag::canDecode(e)&&(line_status==RDLogLine::Scheduled));
e->accept(RDCartDrag::canDecode(e)&&
((line_status==RDLogLine::Scheduled)||
(line_status==RDLogLine::Paused)));
}