From 40ec4ebaa2958b2549125dd525b6fcb2bd595d69 Mon Sep 17 00:00:00 2001 From: Damiano Galassi Date: Thu, 19 Jan 2017 15:01:20 +0100 Subject: [PATCH] MacGui: reload the queue outline view action column when an encode is done (the one with the x or the show in finder icon) --- macosx/HBQueueController.m | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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]; } -- 2.40.0