mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
[Xt] Fix child frame resizing glitch
* src/widget.c (EmacsFrameResize): Exit early for child frames (bug#81077).
This commit is contained in:
parent
13b29eebc1
commit
98348a0bdc
1 changed files with 1 additions and 2 deletions
|
|
@ -428,8 +428,7 @@ EmacsFrameResize (Widget widget)
|
|||
ew->core.width, ew->core.height,
|
||||
f->new_width, f->new_height);
|
||||
|
||||
if (FRAME_PIXEL_WIDTH (f) == ew->core.width
|
||||
&& FRAME_PIXEL_HEIGHT (f) == ew->core.height)
|
||||
if (FRAME_PARENT_FRAME (f)) /* Size always up to date. */
|
||||
return;
|
||||
|
||||
change_frame_size (f, ew->core.width, ew->core.height,
|
||||
|
|
|
|||
Loading…
Reference in a new issue