summaryrefslogtreecommitdiffstats
path: root/macosx/HBQueueController.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2019-02-05 15:43:26 +0100
committerDamiano Galassi <[email protected]>2019-02-05 15:43:26 +0100
commitc59a6c4cbdc7abdfe6012b2be59322ea75e976ee (patch)
treeb7b70576882dc97ead5f14f85a6ddc8a6bdd5968 /macosx/HBQueueController.m
parentf7192e6331306fcd77de053488e424bc6f212ea4 (diff)
MacGui: correct revealSelectedQueueItemsSources: action validation.
Diffstat (limited to 'macosx/HBQueueController.m')
-rw-r--r--macosx/HBQueueController.m3
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m
index e87a8f3ef..d227ffd24 100644
--- a/macosx/HBQueueController.m
+++ b/macosx/HBQueueController.m
@@ -215,7 +215,8 @@ static void *HBControllerQueueCoreContext = &HBControllerQueueCoreContext;
if (action == @selector(editSelectedQueueItem:) ||
action == @selector(removeSelectedQueueItem:) ||
- action == @selector(revealSelectedQueueItems:))
+ action == @selector(revealSelectedQueueItems:) ||
+ action == @selector(revealSelectedQueueItemsSources:))
{
return (self.tableView.selectedRow != -1 || self.tableView.clickedRow != -1);
}