changeset 860:852fe7009876

Prevent subsong control from opening when paused.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 09 Nov 2012 00:14:20 +0200
parents f535c1e274e8
children c6cf203be443
files src/xmms-sid.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/xmms-sid.c	Fri Nov 09 00:10:00 2012 +0200
+++ b/src/xmms-sid.c	Fri Nov 09 00:14:20 2012 +0200
@@ -798,7 +798,7 @@
 
     XS_MUTEX_LOCK(xs_subctrl);
 
-    if (!xs_status.tuneInfo || !xs_status.playing ||
+    if (xs_status.paused || !xs_status.tuneInfo || !xs_status.playing ||
         xs_subctrl || xs_status.tuneInfo->nsubTunes <= 1)
         goto out;