From f93de77666a004cf50659f55778eff11bf2410c0 Mon Sep 17 00:00:00 2001 From: Patrick Linstruth Date: Fri, 23 Nov 2018 21:32:55 -0800 Subject: [PATCH] Fixed regression where remote log changes did not auto refresh in rdairplay(1). --- ChangeLog | 3 +++ lib/rdlogplay.cpp | 3 +++ 2 files changed, 6 insertions(+) diff --git a/ChangeLog b/ChangeLog index 4a6f02d6..454a4bf3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -18055,3 +18055,6 @@ * Removed the 'RDSvc::ImportOs' enumeration. * Removed the 'Windows Import Path' and 'Windows Preimport Command' fields from the 'Edit Service' dialog in rdadmin(1). +2018-11-23 Patrick Linstruth + * Fixed regression where remote log changes did not auto refresh + in rdairplay(1). diff --git a/lib/rdlogplay.cpp b/lib/rdlogplay.cpp index 1620d0c2..b1911f43 100644 --- a/lib/rdlogplay.cpp +++ b/lib/rdlogplay.cpp @@ -2719,6 +2719,9 @@ void RDLogPlay::Playing(int id) emit played(line); AdvanceActiveEvent(); UpdatePostPoint(); + if (isRefreshable()&&play_log->autoRefresh()) { + refresh(); + } LogPlayEvent(logline); emit transportChanged(); }