# HG changeset patch # User Matti Hamalainen # Date 1352412860 -7200 # Node ID 852fe70098769478c3df345e75ac924155e2bfd3 # Parent f535c1e274e8987cf90a45c2f5b55f9ec7c9f570 Prevent subsong control from opening when paused. diff -r f535c1e274e8 -r 852fe7009876 src/xmms-sid.c --- 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;