Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Lord-Grey committed May 19, 2021
1 parent 599d702 commit 0ba01f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libsrc/hyperion/PriorityMuxer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
// qt incl
#include <QDateTime>
#include <QTimer>
#include <QDebug>

// Hyperion includes
#include <hyperion/PriorityMuxer.h>
Expand Down Expand Up @@ -273,7 +272,7 @@ bool PriorityMuxer::clearInput(int priority)
// on clear success update _currentPriority
setCurrentTime();
// emit 'prioritiesChanged' only if _sourceAutoSelectEnabled is false
if (!_sourceAutoSelectEnabled || _currentPriority < priority)
if ((!_sourceAutoSelectEnabled && (_currentPriority < priority)) || _currentPriority == BG_PRIORITY)
emit prioritiesChanged();
return true;
}
Expand Down

0 comments on commit 0ba01f4

Please sign in to comment.