* lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only
pops down on Escape, not any keypress.
This commit is contained in:
parent
133c01167e
commit
4e6e2184d8
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2004-12-26 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||||
|
|
||||||
|
* lwlib-Xaw.c: Put <KeyPress>Escape in dialogOverride so dialogs only
|
||||||
|
pops down on Escape, not any keypress.
|
||||||
|
|
||||||
2004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
2004-11-01 Jan Dj,Ad(Brv <jan.h.d@swipnet.se>
|
||||||
|
|
||||||
* xlwmenu.c (find_first_selectable, find_next_selectable)
|
* xlwmenu.c (find_first_selectable, find_next_selectable)
|
||||||
|
|
|
@ -279,7 +279,7 @@ static char overrideTrans[] =
|
||||||
"<Message>WM_PROTOCOLS: lwlib_delete_dialog()";
|
"<Message>WM_PROTOCOLS: lwlib_delete_dialog()";
|
||||||
/* Dialogs pop down on any key press */
|
/* Dialogs pop down on any key press */
|
||||||
static char dialogOverride[] =
|
static char dialogOverride[] =
|
||||||
"<KeyPress>: lwlib_delete_dialog()";
|
"<KeyPress>Escape: lwlib_delete_dialog()";
|
||||||
static void wm_delete_window();
|
static void wm_delete_window();
|
||||||
static XtActionsRec xaw_actions [] = {
|
static XtActionsRec xaw_actions [] = {
|
||||||
{"lwlib_delete_dialog", wm_delete_window}
|
{"lwlib_delete_dialog", wm_delete_window}
|
||||||
|
|
Loading…
Add table
Reference in a new issue