]> git.sesse.net Git - vlc/commitdiff
* make sure our window titles change while switching items within playback (closes...
authorFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Dec 2007 17:14:58 +0000 (17:14 +0000)
committerFelix Paul Kühne <fkuehne@videolan.org>
Fri, 28 Dec 2007 17:14:58 +0000 (17:14 +0000)
modules/gui/macosx/intf.m

index c4ca2558848dfc3c2d3e24676cd292dd07725634..d781a7b4058c172147708ccf043c688ec322f399 100644 (file)
@@ -1202,7 +1202,7 @@ static VLCMain *_o_sharedMainInstance = nil;
         vlc_bool_t b_chapters = VLC_FALSE;
 
         playlist_t * p_playlist = pl_Yield( p_intf );
-    /** \todo fix i_size use */
+    /* TODO: fix i_size use */
         b_plmul = p_playlist->items.i_size > 1;
         p_input = p_playlist->p_input;
 
@@ -1212,9 +1212,8 @@ static VLCMain *_o_sharedMainInstance = nil;
             vlc_object_yield( p_input );
             b_seekable = var_GetBool( p_input, "seekable" );
 
-            /* check wether slow/fast motion is possible*/
+            /* check whether slow/fast motion is possible */
             b_control = p_input->b_can_pace_control;
 
             /* chapters & titles */
             //b_chapters = p_input->stream.i_area_nb > 1;
@@ -1236,6 +1235,8 @@ static VLCMain *_o_sharedMainInstance = nil;
 
         [o_embedded_window setSeekable: b_seekable];
 
+        p_intf->p_sys->b_current_title_update = VLC_TRUE;
+        
         p_intf->p_sys->b_intf_update = VLC_FALSE;
     }