1
0
mirror of https://github.com/gryf/wmaker.git synced 2026-01-05 21:34:17 +01:00

Fixed a problem in WINGs related to the return type of XLookupString()

in some cases.
This commit is contained in:
dan
1999-05-01 23:46:27 +00:00
parent ef00e3316b
commit 714e2ef487
2 changed files with 11 additions and 0 deletions

View File

@@ -890,6 +890,16 @@ handleTextFieldKeyPress(TextField *tPtr, XEvent *event)
}
break;
case XK_ISO_Left_Tab:
if (tPtr->view->prevFocusChain) {
W_SetFocusOfTopLevel(W_TopLevelOfView(tPtr->view),
tPtr->view->prevFocusChain);
tPtr->flags.notIllegalMovement = 1;
}
WMPostNotificationName(WMTextDidEndEditingNotification, tPtr,
(void*)WMBacktabTextMovement);
break;
case XK_Return:
WMPostNotificationName(WMTextDidEndEditingNotification, tPtr,
(void*)WMReturnTextMovement);