1
0
mirror of https://github.com/ElvishArtisan/rivendell.git synced 2025-05-04 09:39:43 +02:00

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

@ -19861,3 +19861,6 @@
* Fixed a regression in rdairplay(1) that caused the 'Forced Segue' * Fixed a regression in rdairplay(1) that caused the 'Forced Segue'
setting in rdadmin(1) to be ignored when executing an event with setting in rdadmin(1) to be ignored when executing an event with
a hard start attribute. 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.

@ -834,7 +834,9 @@ void LogLineBox::paintEvent(QPaintEvent *e)
void LogLineBox::dragEnterEvent(QDragEnterEvent *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)));
} }