Don't show queue on change if ShowQueue is off

This commit is contained in:
brb 2014-12-29 21:24:47 +01:00
parent e6cce809a8
commit a91e220608

View file

@ -110,7 +110,8 @@
};
$scope.$watchCollection('queue', function(newItem, oldItem) {
if (oldItem.length != newItem.length) {
if (oldItem.length != newItem.length
&& globals.settings.ShowQueue) {
$rootScope.showQueue();
}
/*