mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-09 14:33:28 +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:
parent
cb9ee9af5a
commit
aed6e5b6bc
@ -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.
|
||||
|
@ -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)));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user