summaryrefslogtreecommitdiffstats
path: root/macosx/HBQueueController.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2017-01-19 15:01:20 +0100
committerDamiano Galassi <[email protected]>2017-01-19 15:01:20 +0100
commit40ec4ebaa2958b2549125dd525b6fcb2bd595d69 (patch)
treea22f73bd8ad94c35cad0456ec907563906b6ae16 /macosx/HBQueueController.m
parent81550230adc2359d7ec4f5cff6a5c960b7df7e6e (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)
Diffstat (limited to 'macosx/HBQueueController.m')
-rw-r--r--macosx/HBQueueController.m5
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];
}