diff --git a/ChangeLog b/ChangeLog
index 36cb588c..83538213 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/rdairplay/loglinebox.cpp b/rdairplay/loglinebox.cpp
index 1d8c0e67..819370ec 100644
--- a/rdairplay/loglinebox.cpp
+++ b/rdairplay/loglinebox.cpp
@@ -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)));
 }