Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
2eeb62fc
Commit
2eeb62fc
authored
Jan 10, 2003
by
Cyril Deguet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* enable the network channel box when selecting network channel input
(gnome interface)
parent
48aba773
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
modules/gui/gtk/open.c
modules/gui/gtk/open.c
+9
-1
No files found.
modules/gui/gtk/open.c
View file @
2eeb62fc
...
...
@@ -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 <sam@zoy.org>
* Stphane Borel <stef@via.ecp.fr>
...
...
@@ -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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment