# HG changeset patch # User Fred Pierresteguy # Date 762198351 0 # Node ID e7ac377e8b4d335bddae70af879e820302a654ed # Parent 8e38fcb2df965e9cc6847d7f12eb16958ccdbd51 (EmacsFrameSetCharSize): Set coordinates values to the toplevel widget. diff -r 8e38fcb2df96 -r e7ac377e8b4d src/widget.c --- a/src/widget.c Fri Feb 25 09:29:20 1994 +0000 +++ b/src/widget.c Fri Feb 25 17:45:51 1994 +0000 @@ -900,4 +900,11 @@ for, then the event won't cause the screen to become garbaged, so we have to make sure to do it here. */ SET_FRAME_GARBAGED (f); + + /* Coordinates of the toplevel widget seem to have been lost. + So set it to the rignt values. */ + XtVaSetValues (f->display.x->widget, + XtNx, f->display.x->left_pos, + XtNy, f->display.x->top_pos, + 0); }