diff options
author | Damiano Galassi <[email protected]> | 2017-01-19 15:01:20 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-22 08:56:56 +0100 |
commit | 3469d0a6eaeb8ea97dd7f18e43ece96fe987c991 (patch) | |
tree | a2f795da2ea79c3907fe0c65006cfb3c495ea5f2 /macosx/HBQueueController.m | |
parent | 6032439198c63abf5fed540f097b67e076ecbc4d (diff) |
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)
Diffstat (limited to 'macosx/HBQueueController.m')
-rw-r--r-- | macosx/HBQueueController.m | 5 |
1 files changed, 4 insertions, 1 deletions
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]; } |