From 3469d0a6eaeb8ea97dd7f18e43ece96fe987c991 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Thu, 19 Jan 2017 15:01:20 +0100 Subject: MacGui: reload the queue outline view action column when an encode is done (the one with the x or the show in finder icon) (cherry picked from commit 40ec4ebaa2958b2549125dd525b6fcb2bd595d69) --- macosx/HBQueueController.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'macosx/HBQueueController.m') diff --git a/macosx/HBQueueController.m b/macosx/HBQueueController.m index 190749d55..ddc904f9c 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]; } -- cgit v1.2.3