diff options
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/xterm.c | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 1231099fff3..0e8e949004e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-05-03 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * xterm.c (x_set_frame_alpha): Do not set property on anything | ||
| 4 | else than FRAME_X_OUTER_WINDOW (Bug#8608). | ||
| 5 | |||
| 1 | 2011-05-02 Juanma Barranquero <lekktu@gmail.com> | 6 | 2011-05-02 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596) | 8 | * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596) |
diff --git a/src/xterm.c b/src/xterm.c index 491a8b3698f..20259b7ab2e 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -454,11 +454,6 @@ x_set_frame_alpha (struct frame *f) | |||
| 454 | double alpha_min = 1.0; | 454 | double alpha_min = 1.0; |
| 455 | unsigned long opac; | 455 | unsigned long opac; |
| 456 | 456 | ||
| 457 | if (FRAME_X_DISPLAY_INFO (f)->root_window != FRAME_X_OUTPUT (f)->parent_desc) | ||
| 458 | /* Since the WM decoration lies under the FRAME_OUTER_WINDOW, | ||
| 459 | we must treat the former instead of the latter. */ | ||
| 460 | win = FRAME_X_OUTPUT (f)->parent_desc; | ||
| 461 | |||
| 462 | if (dpyinfo->x_highlight_frame == f) | 457 | if (dpyinfo->x_highlight_frame == f) |
| 463 | alpha = f->alpha[0]; | 458 | alpha = f->alpha[0]; |
| 464 | else | 459 | else |