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
538cf8b8
Commit
538cf8b8
authored
Dec 15, 2008
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winex11: Select StructureNotifyMask input on all windows.
parent
7f22f1c6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
event.c
dlls/winex11.drv/event.c
+1
-1
window.c
dlls/winex11.drv/window.c
+3
-2
No files found.
dlls/winex11.drv/event.c
View file @
538cf8b8
...
...
@@ -803,7 +803,7 @@ void X11DRV_ConfigureNotify( HWND hwnd, XEvent *xev )
if
(
!
hwnd
)
return
;
if
(
!
(
data
=
X11DRV_get_win_data
(
hwnd
)))
return
;
if
(
!
data
->
mapped
||
data
->
iconic
)
return
;
if
(
!
data
->
mapped
||
data
->
iconic
||
!
data
->
managed
)
return
;
/* Get geometry */
...
...
dlls/winex11.drv/window.c
View file @
538cf8b8
...
...
@@ -307,8 +307,9 @@ static int get_window_attributes( Display *display, struct x11drv_win_data *data
attr
->
backing_store
=
NotUseful
;
attr
->
event_mask
=
(
ExposureMask
|
PointerMotionMask
|
ButtonPressMask
|
ButtonReleaseMask
|
EnterWindowMask
|
KeyPressMask
|
KeyReleaseMask
|
FocusChangeMask
|
KeymapStateMask
);
if
(
data
->
managed
)
attr
->
event_mask
|=
StructureNotifyMask
|
PropertyChangeMask
;
KeyPressMask
|
KeyReleaseMask
|
FocusChangeMask
|
KeymapStateMask
|
StructureNotifyMask
);
if
(
data
->
managed
)
attr
->
event_mask
|=
PropertyChangeMask
;
return
(
CWOverrideRedirect
|
CWSaveUnder
|
CWColormap
|
CWCursor
|
CWEventMask
|
CWBitGravity
|
CWBackingStore
);
...
...
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