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
01d9ce67
Commit
01d9ce67
authored
Mar 08, 2001
by
Pierre Baillet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
. Hey! table header (Dnd still a little buggy :/)
parent
491a85a8
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
4 deletions
+7
-4
plugins/gtk/gtk_interface.c
plugins/gtk/gtk_interface.c
+3
-1
plugins/gtk/gtk_playlist.c
plugins/gtk/gtk_playlist.c
+1
-1
plugins/gtk/intf_gtk.glade
plugins/gtk/intf_gtk.glade
+3
-2
No files found.
plugins/gtk/gtk_interface.c
View file @
01d9ce67
...
...
@@ -1277,10 +1277,12 @@ create_intf_playlist (void)
(
GtkDestroyNotify
)
gtk_widget_unref
);
gtk_widget_show
(
playlist_clist
);
gtk_container_add
(
GTK_CONTAINER
(
scrolledwindow1
),
playlist_clist
);
gtk_container_set_border_width
(
GTK_CONTAINER
(
playlist_clist
),
1
);
gtk_clist_set_column_width
(
GTK_CLIST
(
playlist_clist
),
0
,
257
);
gtk_clist_set_column_width
(
GTK_CLIST
(
playlist_clist
),
1
,
80
);
gtk_clist_set_selection_mode
(
GTK_CLIST
(
playlist_clist
),
GTK_SELECTION_EXTENDED
);
gtk_clist_column_titles_hide
(
GTK_CLIST
(
playlist_clist
));
gtk_clist_column_titles_show
(
GTK_CLIST
(
playlist_clist
));
gtk_clist_set_shadow_type
(
GTK_CLIST
(
playlist_clist
),
GTK_SHADOW_OUT
);
label22
=
gtk_label_new
(
_
(
"File"
));
gtk_widget_ref
(
label22
);
...
...
plugins/gtk/gtk_playlist.c
View file @
01d9ce67
...
...
@@ -314,7 +314,7 @@ on_intf_playlist_drag_data_received (GtkWidget *widget,
&
row
,
&
col
)
==
1
)
{
on_generic_drop_data_received
(
p_intf
,
data
,
info
,
row
);
on_generic_drop_data_received
(
p_intf
,
data
,
info
,
row
-
1
/*TRICK ! */
);
}
else
{
on_generic_drop_data_received
(
p_intf
,
data
,
info
,
PLAYLIST_END
);
}
...
...
plugins/gtk/intf_gtk.glade
View file @
01d9ce67
...
...
@@ -1387,6 +1387,7 @@ Henri Fallon <henri@via.ecp.fr></label>
<widget>
<class>
GtkCList
</class>
<name>
playlist_clist
</name>
<border_width>
1
</border_width>
<can_focus>
True
</can_focus>
<signal>
<name>
event
</name>
...
...
@@ -1401,8 +1402,8 @@ Henri Fallon <henri@via.ecp.fr></label>
<columns>
2
</columns>
<column_widths>
257,80
</column_widths>
<selection_mode>
GTK_SELECTION_EXTENDED
</selection_mode>
<show_titles>
Fals
e
</show_titles>
<shadow_type>
GTK_SHADOW_
IN
</shadow_type>
<show_titles>
Tru
e
</show_titles>
<shadow_type>
GTK_SHADOW_
OUT
</shadow_type>
<widget>
<class>
GtkLabel
</class>
...
...
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