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
449a9c76
Commit
449a9c76
authored
Dec 06, 2006
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor code simplification
parent
6c464c3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
9 deletions
+3
-9
src/video_output/vout_intf.c
src/video_output/vout_intf.c
+3
-9
No files found.
src/video_output/vout_intf.c
View file @
449a9c76
...
...
@@ -1119,15 +1119,9 @@ static int FullscreenCallback( vlc_object_t *p_this, char const *psz_cmd,
/* Disable "always on top" in fullscreen mode */
var_Get
(
p_vout
,
"video-on-top"
,
&
val
);
if
(
newval
.
b_bool
&&
val
.
b_bool
)
{
val
.
b_bool
=
VLC_FALSE
;
vout_Control
(
p_vout
,
VOUT_SET_STAY_ON_TOP
,
val
.
b_bool
);
}
else
if
(
!
newval
.
b_bool
&&
val
.
b_bool
)
{
vout_Control
(
p_vout
,
VOUT_SET_STAY_ON_TOP
,
val
.
b_bool
);
}
if
(
val
.
b_bool
)
vout_Control
(
p_vout
,
VOUT_SET_STAY_ON_TOP
,
(
vlc_bool_t
)
!
newval
.
b_bool
);
val
.
b_bool
=
VLC_TRUE
;
var_Set
(
p_vout
,
"intf-change"
,
val
);
...
...
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