Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
4995ad77
Commit
4995ad77
authored
Oct 21, 2012
by
KO Myung-Hun
Committed by
Jean-Baptiste Kempf
Oct 22, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kva: hide mouse pointer only if it is not hidden
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
3d3db0e5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
modules/video_output/kva.c
modules/video_output/kva.c
+2
-1
No files found.
modules/video_output/kva.c
View file @
4995ad77
...
...
@@ -437,7 +437,8 @@ static int Control( vout_display_t *vd, int query, va_list args )
POINTL
ptl
;
WinQueryPointerPos
(
HWND_DESKTOP
,
&
ptl
);
if
(
WinWindowFromPoint
(
HWND_DESKTOP
,
&
ptl
,
TRUE
)
==
sys
->
client
)
if
(
!
sys
->
is_mouse_hidden
&&
WinWindowFromPoint
(
HWND_DESKTOP
,
&
ptl
,
TRUE
)
==
sys
->
client
)
{
WinShowPointer
(
HWND_DESKTOP
,
FALSE
);
sys
->
is_mouse_hidden
=
true
;
...
...
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