Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
39faf1b6
Commit
39faf1b6
authored
May 22, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./plugins/gtk/gnome.glade: removed bevel from title and chapter buttons.
parent
afdfd513
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
plugins/gtk/gnome.glade
plugins/gtk/gnome.glade
+4
-4
plugins/gtk/gnome_interface.c
plugins/gtk/gnome_interface.c
+4
-0
No files found.
plugins/gtk/gnome.glade
View file @
39faf1b6
...
...
@@ -764,7 +764,7 @@
<last_modification_time>
Sat, 19 May 2001 03:13:28 GMT
</last_modification_time>
</signal>
<stock_button>
GNOME_STOCK_BUTTON_PREV
</stock_button>
<relief>
GTK_RELIEF_NO
RMAL
</relief>
<relief>
GTK_RELIEF_NO
NE
</relief>
<child>
<padding>
0
</padding>
<expand>
False
</expand>
...
...
@@ -783,7 +783,7 @@
<last_modification_time>
Sat, 19 May 2001 03:13:23 GMT
</last_modification_time>
</signal>
<stock_button>
GNOME_STOCK_BUTTON_NEXT
</stock_button>
<relief>
GTK_RELIEF_NO
RMAL
</relief>
<relief>
GTK_RELIEF_NO
NE
</relief>
<child>
<padding>
0
</padding>
<expand>
False
</expand>
...
...
@@ -859,7 +859,7 @@
<last_modification_time>
Tue, 29 May 2001 13:13:41 GMT
</last_modification_time>
</signal>
<stock_button>
GNOME_STOCK_BUTTON_DOWN
</stock_button>
<relief>
GTK_RELIEF_NO
RMAL
</relief>
<relief>
GTK_RELIEF_NO
NE
</relief>
<child>
<padding>
0
</padding>
<expand>
False
</expand>
...
...
@@ -879,7 +879,7 @@
<last_modification_time>
Sat, 19 May 2001 03:13:08 GMT
</last_modification_time>
</signal>
<stock_button>
GNOME_STOCK_BUTTON_UP
</stock_button>
<relief>
GTK_RELIEF_NO
RMAL
</relief>
<relief>
GTK_RELIEF_NO
NE
</relief>
<child>
<padding>
0
</padding>
<expand>
False
</expand>
...
...
plugins/gtk/gnome_interface.c
View file @
39faf1b6
...
...
@@ -613,6 +613,7 @@ create_intf_window (void)
gtk_widget_show
(
button_title_prev
);
gtk_box_pack_start
(
GTK_BOX
(
title_chapter_box
),
button_title_prev
,
FALSE
,
FALSE
,
0
);
gtk_tooltips_set_tip
(
tooltips
,
button_title_prev
,
_
(
"Select previous title"
),
NULL
);
gtk_button_set_relief
(
GTK_BUTTON
(
button_title_prev
),
GTK_RELIEF_NONE
);
button_title_next
=
gnome_stock_button
(
GNOME_STOCK_BUTTON_NEXT
);
gtk_widget_ref
(
button_title_next
);
...
...
@@ -620,6 +621,7 @@ create_intf_window (void)
(
GtkDestroyNotify
)
gtk_widget_unref
);
gtk_widget_show
(
button_title_next
);
gtk_box_pack_start
(
GTK_BOX
(
title_chapter_box
),
button_title_next
,
FALSE
,
FALSE
,
0
);
gtk_button_set_relief
(
GTK_BUTTON
(
button_title_next
),
GTK_RELIEF_NONE
);
vseparator1
=
gtk_vseparator_new
();
gtk_widget_ref
(
vseparator1
);
...
...
@@ -656,6 +658,7 @@ create_intf_window (void)
gtk_widget_show
(
button_chapter_prev
);
gtk_box_pack_start
(
GTK_BOX
(
dvd_chapter_box
),
button_chapter_prev
,
FALSE
,
FALSE
,
0
);
gtk_tooltips_set_tip
(
tooltips
,
button_chapter_prev
,
_
(
"Select previous chapter"
),
NULL
);
gtk_button_set_relief
(
GTK_BUTTON
(
button_chapter_prev
),
GTK_RELIEF_NONE
);
button_chapter_next
=
gnome_stock_button
(
GNOME_STOCK_BUTTON_UP
);
gtk_widget_ref
(
button_chapter_next
);
...
...
@@ -664,6 +667,7 @@ create_intf_window (void)
gtk_widget_show
(
button_chapter_next
);
gtk_box_pack_start
(
GTK_BOX
(
dvd_chapter_box
),
button_chapter_next
,
FALSE
,
FALSE
,
0
);
gtk_tooltips_set_tip
(
tooltips
,
button_chapter_next
,
_
(
"Select next chapter"
),
NULL
);
gtk_button_set_relief
(
GTK_BUTTON
(
button_chapter_next
),
GTK_RELIEF_NONE
);
network_box
=
gtk_hbox_new
(
TRUE
,
0
);
gtk_widget_ref
(
network_box
);
...
...
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