diff options
| author | Glenn Morris | 2014-05-07 20:41:21 -0700 |
|---|---|---|
| committer | Glenn Morris | 2014-05-07 20:41:21 -0700 |
| commit | fb3f83f5fd9e80347c8b8e36f6eaefbb912fe57b (patch) | |
| tree | f106c360c3aef01bcacdc77b66b7c5b20261502e /src/w32fns.c | |
| parent | 1ba38c429fa6ce17568771ef51c8e53b1a72bb94 (diff) | |
| parent | 606695a67801acfd1792110e4ea3228b50b0117d (diff) | |
| download | emacs-fb3f83f5fd9e80347c8b8e36f6eaefbb912fe57b.tar.gz emacs-fb3f83f5fd9e80347c8b8e36f6eaefbb912fe57b.zip | |
Merge from emacs-24; up to 2014-05-08T03:34:20Z!rgm@gnu.org
Diffstat (limited to 'src/w32fns.c')
| -rw-r--r-- | src/w32fns.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/w32fns.c b/src/w32fns.c index 77476757c2f..fa988583f33 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -6035,12 +6035,13 @@ Text larger than the specified size is clipped. */) | |||
| 6035 | /* Put tooltip in topmost group and in position. */ | 6035 | /* Put tooltip in topmost group and in position. */ |
| 6036 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST, | 6036 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST, |
| 6037 | root_x, root_y, 0, 0, | 6037 | root_x, root_y, 0, 0, |
| 6038 | SWP_NOSIZE | SWP_NOACTIVATE); | 6038 | SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOOWNERZORDER); |
| 6039 | 6039 | ||
| 6040 | /* Ensure tooltip is on top of other topmost windows (eg menus). */ | 6040 | /* Ensure tooltip is on top of other topmost windows (eg menus). */ |
| 6041 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP, | 6041 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP, |
| 6042 | 0, 0, 0, 0, | 6042 | 0, 0, 0, 0, |
| 6043 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | 6043 | SWP_NOMOVE | SWP_NOSIZE |
| 6044 | | SWP_NOACTIVATE | SWP_NOOWNERZORDER); | ||
| 6044 | 6045 | ||
| 6045 | unblock_input (); | 6046 | unblock_input (); |
| 6046 | goto start_timer; | 6047 | goto start_timer; |
| @@ -6238,12 +6239,13 @@ Text larger than the specified size is clipped. */) | |||
| 6238 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST, | 6239 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOPMOST, |
| 6239 | root_x, root_y, | 6240 | root_x, root_y, |
| 6240 | rect.right - rect.left + FRAME_COLUMN_WIDTH (f), | 6241 | rect.right - rect.left + FRAME_COLUMN_WIDTH (f), |
| 6241 | rect.bottom - rect.top, SWP_NOACTIVATE); | 6242 | rect.bottom - rect.top, SWP_NOACTIVATE | SWP_NOOWNERZORDER); |
| 6242 | 6243 | ||
| 6243 | /* Ensure tooltip is on top of other topmost windows (eg menus). */ | 6244 | /* Ensure tooltip is on top of other topmost windows (eg menus). */ |
| 6244 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP, | 6245 | SetWindowPos (FRAME_W32_WINDOW (f), HWND_TOP, |
| 6245 | 0, 0, 0, 0, | 6246 | 0, 0, 0, 0, |
| 6246 | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); | 6247 | SWP_NOMOVE | SWP_NOSIZE |
| 6248 | | SWP_NOACTIVATE | SWP_NOOWNERZORDER); | ||
| 6247 | 6249 | ||
| 6248 | /* Let redisplay know that we have made the frame visible already. */ | 6250 | /* Let redisplay know that we have made the frame visible already. */ |
| 6249 | SET_FRAME_VISIBLE (f, 1); | 6251 | SET_FRAME_VISIBLE (f, 1); |