Commit 7e6fdd0d authored by Felix Paul Kühne's avatar Felix Paul Kühne

* enable multiple selections for streaming as well (closes #522) and put some news

parent 890c6db3
...@@ -34,8 +34,8 @@ Interfaces: ...@@ -34,8 +34,8 @@ Interfaces:
- Improved playlist handling - Improved playlist handling
- Support for popup menus, animated bitmaps, equalizer, ... - Support for popup menus, animated bitmaps, equalizer, ...
* OS X * OS X
- Overlay control panel - support for processing multiple items with the wizard in a single run
- - option to save selections in the wizard for a session (default enabled)
* HTTP * HTTP
- Much improved default interface pages - Much improved default interface pages
......
...@@ -525,16 +525,13 @@ static VLCWizard *_o_sharedInstance = nil; ...@@ -525,16 +525,13 @@ static VLCWizard *_o_sharedInstance = nil;
o_mode = [[o_t1_matrix_strmgOrTrnscd selectedCell] title]; o_mode = [[o_t1_matrix_strmgOrTrnscd selectedCell] title];
if( [o_mode isEqualToString: _NS("Stream to network")] ) if( [o_mode isEqualToString: _NS("Stream to network")] )
{ {
/* we will be streaming -- we can't allow multiple selections */ /* we will be streaming */
[o_userSelections setObject:@"strmg" forKey:@"trnscdOrStrmg"]; [o_userSelections setObject:@"strmg" forKey:@"trnscdOrStrmg"];
[o_t2_tbl_plst setAllowsMultipleSelection: NO];
} }
else else
{ {
/* we will just do some transcoding, so we can allow multiple /* we will just do some transcoding */
* selections in our playlist */
[o_userSelections setObject:@"trnscd" forKey:@"trnscdOrStrmg"]; [o_userSelections setObject:@"trnscd" forKey:@"trnscdOrStrmg"];
[o_t2_tbl_plst setAllowsMultipleSelection: YES];
} }
[o_btn_backward setEnabled:YES]; [o_btn_backward setEnabled:YES];
[o_tab_pageHolder selectTabViewItemAtIndex:1]; [o_tab_pageHolder selectTabViewItemAtIndex:1];
......
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