From: Damiano Galassi Date: Thu, 19 Jan 2017 14:01:20 +0000 (+0100) Subject: MacGui: reload the queue outline view action column when an encode is done (the one... X-Git-Tag: 1.1.0~772 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40ec4ebaa2958b2549125dd525b6fcb2bd595d69;p=handbrake MacGui: reload the queue outline view action column when an encode is done (the one with the x or the show in finder icon) --- diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index 31320cacf..7fb42dad1 100644 --- a/macosx/HBQueueController.m +++ b/macosx/HBQueueController.m @@ -304,7 +304,10 @@ - (void)reloadQueueItemsAtIndexes:(NSIndexSet *)indexes { - [self.outlineView reloadDataForRowIndexes:indexes columnIndexes:[NSIndexSet indexSetWithIndex:0]]; + NSMutableIndexSet *outlineIndexes = [NSMutableIndexSet indexSet]; + [outlineIndexes addIndex:0]; + [outlineIndexes addIndex:2]; + [self.outlineView reloadDataForRowIndexes:indexes columnIndexes:outlineIndexes]; [self updateQueueStats]; }