Commit 43b0c46d authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: redraw the playlist view on selection change (close #6316)

parent ccaeb4ab
...@@ -620,6 +620,7 @@ ...@@ -620,6 +620,7 @@
id o_item = [o_outline_dict objectForKey:[NSString stringWithFormat: @"%p", p_item]]; id o_item = [o_outline_dict objectForKey:[NSString stringWithFormat: @"%p", p_item]];
NSInteger i_index = [o_outline_view rowForItem:o_item]; NSInteger i_index = [o_outline_view rowForItem:o_item];
[o_outline_view selectRowIndexes:[NSIndexSet indexSetWithIndex:i_index] byExtendingSelection:NO]; [o_outline_view selectRowIndexes:[NSIndexSet indexSetWithIndex:i_index] byExtendingSelection:NO];
[o_outline_view setNeedsDisplay:YES];
} }
/* Check if p_item is a child of p_node recursively. We need to check the item /* Check if p_item is a child of p_node recursively. We need to check the item
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment