Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
0b9fa694
Commit
0b9fa694
authored
Jun 12, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: fixing message debug to help fixing some issues.
parent
e0600d46
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/gui/qt4/components/controller.cpp
modules/gui/qt4/components/controller.cpp
+2
-1
No files found.
modules/gui/qt4/components/controller.cpp
View file @
0b9fa694
...
...
@@ -1017,12 +1017,12 @@ void FullscreenControllerWidget::fullscreenChanged( vout_thread_t *p_vout,
bool
b_fs
,
int
i_timeout
)
{
/* FIXME - multiple vout (ie multiple mouse position ?) and thread safety if multiple vout ? */
msg_Dbg
(
p_vout
,
"Qt: Entering Fullscreen"
);
vlc_mutex_lock
(
&
lock
);
/* Entering fullscreen, register callback */
if
(
b_fs
&&
!
b_fullscreen
)
{
msg_Dbg
(
p_vout
,
"Qt: Entering Fullscreen"
);
b_fullscreen
=
true
;
i_hide_timeout
=
i_timeout
;
var_AddCallback
(
p_vout
,
"mouse-moved"
,
...
...
@@ -1031,6 +1031,7 @@ void FullscreenControllerWidget::fullscreenChanged( vout_thread_t *p_vout,
/* Quitting fullscreen, unregistering callback */
else
if
(
!
b_fs
&&
b_fullscreen
)
{
msg_Dbg
(
p_vout
,
"Qt: Quitting Fullscreen"
);
b_fullscreen
=
false
;
i_hide_timeout
=
i_timeout
;
var_DelCallback
(
p_vout
,
"mouse-moved"
,
...
...
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