X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=blobdiff_plain;f=modules%2Fgui%2Fgtk%2Fopen.c;h=99149a33abbccef24846db382d69c397922b8056;hp=d4d23f5417621bcce08c709ec2a9fb842390643c;hb=2eeb62fc0fc080709bfa0a1557d7b865a5bb86ce;hpb=48aba773f62c7a5ed7cdfecc861977ba2aa96f51 diff --git a/modules/gui/gtk/open.c b/modules/gui/gtk/open.c index d4d23f5417..99149a33ab 100644 --- a/modules/gui/gtk/open.c +++ b/modules/gui/gtk/open.c @@ -2,7 +2,7 @@ * gtk_open.c : functions to handle file/disc/network open widgets. ***************************************************************************** * Copyright (C) 2000, 2001 VideoLAN - * $Id: open.c,v 1.5 2003/01/10 10:01:47 lool Exp $ + * $Id: open.c,v 1.6 2003/01/10 11:02:21 asmax Exp $ * * Authors: Samuel Hocevar * Stéphane Borel @@ -532,6 +532,14 @@ void GtkOpenOk( GtkButton * button, gpointer user_data ) GtkRebuildCList( p_playlist_clist, p_playlist ); vlc_object_release( p_playlist ); + + /* Enable the channel box when network channel is selected */ + if( GTK_TOGGLE_BUTTON( lookup_widget( GTK_WIDGET(button), + "network_channel" ) )->active ) + { + p_intf->p_sys->b_playing = 1; + } + } void GtkOpenCancel( GtkButton * button, gpointer user_data )