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
e0ba5677
Commit
e0ba5677
authored
May 04, 2002
by
Loïc Minier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/gtk/*.glade, ./plugins/gtk/*_interface.*: fix for interface
autoshrink when toolbar text isn't displayed
parent
6d254dc9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1 addition
and
5 deletions
+1
-5
plugins/gtk/gnome.glade
plugins/gtk/gnome.glade
+0
-1
plugins/gtk/gnome_interface.c
plugins/gtk/gnome_interface.c
+0
-1
plugins/gtk/gtk.glade
plugins/gtk/gtk.glade
+0
-1
plugins/gtk/gtk_interface.c
plugins/gtk/gtk_interface.c
+1
-2
No files found.
plugins/gtk/gnome.glade
View file @
e0ba5677
...
...
@@ -1002,7 +1002,6 @@
<class>
GnomeAppBar
</class>
<child_name>
GnomeApp:appbar
</child_name>
<name>
appbar
</name>
<width>
500
</width>
<has_progress>
False
</has_progress>
<has_status>
True
</has_status>
<child>
...
...
plugins/gtk/gnome_interface.c
View file @
e0ba5677
...
...
@@ -714,7 +714,6 @@ create_intf_window (void)
(
GtkDestroyNotify
)
gtk_widget_unref
);
gtk_widget_show
(
appbar
);
gnome_app_set_statusbar
(
GNOME_APP
(
intf_window
),
appbar
);
gtk_widget_set_usize
(
appbar
,
500
,
-
2
);
gtk_signal_connect
(
GTK_OBJECT
(
intf_window
),
"delete_event"
,
GTK_SIGNAL_FUNC
(
GtkWindowDelete
),
...
...
plugins/gtk/gtk.glade
View file @
e0ba5677
...
...
@@ -1006,7 +1006,6 @@
<widget>
<class>
GtkStatusbar
</class>
<name>
intf_statusbar
</name>
<width>
500
</width>
<child>
<padding>
0
</padding>
<expand>
False
</expand>
...
...
plugins/gtk/gtk_interface.c
View file @
e0ba5677
...
...
@@ -788,7 +788,7 @@ create_intf_window (void)
channel_label
=
gtk_label_new
(
_
(
"Channel:"
));
gtk_widget_ref
(
channel_label
);
gtk_object_set_data_full
(
GTK_OBJECT
(
intf_window
),
"channel
-
label"
,
channel_label
,
gtk_object_set_data_full
(
GTK_OBJECT
(
intf_window
),
"channel
_
label"
,
channel_label
,
(
GtkDestroyNotify
)
gtk_widget_unref
);
gtk_widget_show
(
channel_label
);
gtk_box_pack_start
(
GTK_BOX
(
network_channel_box
),
channel_label
,
FALSE
,
FALSE
,
5
);
...
...
@@ -815,7 +815,6 @@ create_intf_window (void)
(
GtkDestroyNotify
)
gtk_widget_unref
);
gtk_widget_show
(
intf_statusbar
);
gtk_box_pack_start
(
GTK_BOX
(
window_vbox
),
intf_statusbar
,
FALSE
,
FALSE
,
0
);
gtk_widget_set_usize
(
intf_statusbar
,
500
,
-
2
);
gtk_signal_connect
(
GTK_OBJECT
(
intf_window
),
"drag_data_received"
,
GTK_SIGNAL_FUNC
(
GtkWindowDrag
),
...
...
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