Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6cfa0a31
Commit
6cfa0a31
authored
Feb 18, 2013
by
Ken Thomases
Committed by
Alexandre Julliard
Feb 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Don't bring a window onto the screen in SetFocus().
parent
1561fa41
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
window.c
dlls/winemac.drv/window.c
+1
-2
No files found.
dlls/winemac.drv/window.c
View file @
6cfa0a31
...
...
@@ -852,11 +852,10 @@ void CDECL macdrv_SetFocus(HWND hwnd)
if
(
!
(
hwnd
=
GetAncestor
(
hwnd
,
GA_ROOT
)))
return
;
if
(
!
(
data
=
get_win_data
(
hwnd
)))
return
;
if
(
data
->
cocoa_window
)
if
(
data
->
cocoa_window
&&
data
->
on_screen
)
{
/* Set Mac focus */
macdrv_give_cocoa_window_focus
(
data
->
cocoa_window
);
data
->
on_screen
=
TRUE
;
}
release_win_data
(
data
);
...
...
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