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
4c651e39
Commit
4c651e39
authored
Jun 04, 2013
by
Ken Thomases
Committed by
Alexandre Julliard
Jun 04, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winemac: Don't unminimize a window on first activation during start-up.
parent
598ff4dd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
cocoa_app.h
dlls/winemac.drv/cocoa_app.h
+2
-0
cocoa_app.m
dlls/winemac.drv/cocoa_app.m
+2
-1
No files found.
dlls/winemac.drv/cocoa_app.h
View file @
4c651e39
...
...
@@ -81,6 +81,8 @@ enum {
NSTimeInterval
lastEventTapEventTime
;
NSImage
*
applicationIcon
;
BOOL
beenActive
;
}
@property
(
nonatomic
)
CGEventSourceKeyboardType
keyboardType
;
...
...
dlls/winemac.drv/cocoa_app.m
View file @
4c651e39
...
...
@@ -1707,7 +1707,7 @@ int macdrv_err_on;
[
self
adjustWindowLevels
:
YES
];
if
(
!
[
self
frontWineWindow
])
if
(
beenActive
&&
!
[
self
frontWineWindow
])
{
for
(
WineWindow
*
window
in
[
NSApp
windows
])
{
...
...
@@ -1718,6 +1718,7 @@ int macdrv_err_on;
}
}
}
beenActive
=
TRUE
;
// If a Wine process terminates abruptly while it has the display captured
// and switched to a different resolution, Mac OS X will uncapture the
...
...
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