Don't show queue on change if ShowQueue is off
This commit is contained in:
parent
e6cce809a8
commit
a91e220608
1 changed files with 2 additions and 1 deletions
|
@ -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();
|
||||
}
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue