Process editres events not for frames correctly
* src/xterm.c (handle_one_xevent): Dispatch Editres events to interested widgets.
This commit is contained in:
parent
1321b5989c
commit
08c6e699f6
1 changed files with 7 additions and 3 deletions
10
src/xterm.c
10
src/xterm.c
|
@ -14342,9 +14342,13 @@ handle_one_xevent (struct x_display_info *dpyinfo,
|
|||
{
|
||||
f = any;
|
||||
if (f)
|
||||
_XEditResCheckMessages (f->output_data.x->widget,
|
||||
NULL, (XEvent *) event, NULL);
|
||||
goto done;
|
||||
{
|
||||
_XEditResCheckMessages (f->output_data.x->widget,
|
||||
NULL, (XEvent *) event, NULL);
|
||||
goto done;
|
||||
}
|
||||
|
||||
goto OTHER;
|
||||
}
|
||||
#endif /* X_TOOLKIT_EDITRES */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue