[vlc-devel] commit: osx-wizard: make sure to only re-select encap formats that are actually available *coughcough* ( Felix Paul Kühne )

git version control git at videolan.org
Mon Dec 29 01:06:03 CET 2008


vlc | branch: 0.9-bugfix | Felix Paul Kühne <fkuehne at videolan.org> | Mon Dec 29 01:05:44 2008 +0100| [87a2c44f5f827435b37961d57ca61fdf42154943] | committer: Felix Paul Kühne 

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=87a2c44f5f827435b37961d57ca61fdf42154943
---

 NEWS                        |    8 ++++++--
 modules/gui/macosx/wizard.m |    3 ++-
 2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/NEWS b/NEWS
index 5ffe74c..7f38549 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,13 @@
-Changes between 0.9.8a and 0.9.9:
----------------------------------
+Changes between 0.9.8a and 0.9.9 (not-yet-released):
+----------------------------------------------------
+
+Mac OS X Interface:
+ * Fixed multiple UTF8 issues in the Streaming / Exporting Wizard
 
 New Localizations:
  * Indonesian
 
+
 Changes between 0.9.6 and 0.9.8a:
 ---------------------------------
 
diff --git a/modules/gui/macosx/wizard.m b/modules/gui/macosx/wizard.m
index 4f68af5..dedb7b7 100644
--- a/modules/gui/macosx/wizard.m
+++ b/modules/gui/macosx/wizard.m
@@ -1051,7 +1051,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];




More information about the vlc-devel mailing list