diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2007-05-27 18:57:51 +0000 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2007-05-27 18:57:51 +0000 |
| commit | 47744e03c3016e98940a4ce6393d9f6403ca794c (patch) | |
| tree | f19fa866fe3771c5ac12952f1c04cdaac05ef5db /openbox | |
| parent | 7f9080c6a0679aab23e7519dcc6d8498f4e28a0f (diff) | |
don't crash when you press enter with nothing selected in the menu
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index e03c8203..3bfca98e 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -1566,7 +1566,7 @@ static gboolean event_handle_menu_keyboard(XEvent *ev) Control-Enter runs it without closing the menu. */ if (frame->child) menu_frame_select_next(frame->child); - else + else if (frame->selected) menu_entry_frame_execute(frame->selected, state, ev->xkey.time); } |
