mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-22 14:08:06 +01:00
Fixed a problem in WINGs related to the return type of XLookupString()
in some cases.
This commit is contained in:
1
INSTALL
1
INSTALL
@@ -15,6 +15,7 @@ SUPPORTED PLATFORMS
|
|||||||
- FreeBSD
|
- FreeBSD
|
||||||
- NetBSD
|
- NetBSD
|
||||||
- OpenBSD
|
- OpenBSD
|
||||||
|
- BSDI 4.0
|
||||||
- Solaris 2.5.1, 2.5.2
|
- Solaris 2.5.1, 2.5.2
|
||||||
- Solaris 2.6.0
|
- Solaris 2.6.0
|
||||||
- Solaris 2.7beta
|
- Solaris 2.7beta
|
||||||
|
|||||||
@@ -890,6 +890,16 @@ handleTextFieldKeyPress(TextField *tPtr, XEvent *event)
|
|||||||
}
|
}
|
||||||
break;
|
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:
|
case XK_Return:
|
||||||
WMPostNotificationName(WMTextDidEndEditingNotification, tPtr,
|
WMPostNotificationName(WMTextDidEndEditingNotification, tPtr,
|
||||||
(void*)WMReturnTextMovement);
|
(void*)WMReturnTextMovement);
|
||||||
|
|||||||
Reference in New Issue
Block a user