Commit eab8710b authored by Felix Paul Kühne's avatar Felix Paul Kühne

osx-wizard: make sure to only re-select encap formats that are actually available *coughcough*

parent b6961e16
......@@ -1053,7 +1053,8 @@ static VLCWizard *_o_sharedInstance = nil;
if (anythingEnabled == YES)
{
/* re-select the previously chosen item, if available */
[o_t5_matrix_encap selectCellWithTag: i_temp];
if( [[o_t5_matrix_encap cellWithTag: i_temp] isEnabled] )
[o_t5_matrix_encap selectCellWithTag: i_temp];
/* go the encap-tab */
[o_tab_pageHolder selectTabViewItemAtIndex:4];
......
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