diff options
author | Damiano Galassi <[email protected]> | 2017-01-19 15:01:20 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2017-01-19 15:01:20 +0100 |
commit | 40ec4ebaa2958b2549125dd525b6fcb2bd595d69 (patch) | |
tree | a22f73bd8ad94c35cad0456ec907563906b6ae16 | |
parent | 81550230adc2359d7ec4f5cff6a5c960b7df7e6e (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)
-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 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]; } |