From: Damiano Galassi Date: Tue, 5 Feb 2019 14:43:26 +0000 (+0100) Subject: MacGui: correct revealSelectedQueueItemsSources: action validation. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c59a6c4cbdc7abdfe6012b2be59322ea75e976ee;p=handbrake MacGui: correct revealSelectedQueueItemsSources: action validation. --- 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); }