From: Ray Strode Date: Fri, 10 Jan 2014 19:06:13 +0000 (-0500) Subject: seat: activate keyboard when opening seat X-Git-Tag: 0.9.0~52 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=00cbac73f91a34a32379e664e88f36f4461bf135;p=thirdparty%2Fplymouth.git seat: activate keyboard when opening seat During the recent device manager work, the code to open the keyboard initially got dropped, making keyboard input not work. This commit fixes that. --- diff --git a/src/libply-splash-core/ply-seat.c b/src/libply-splash-core/ply-seat.c index d1493a71..0900346b 100644 --- a/src/libply-splash-core/ply-seat.c +++ b/src/libply-splash-core/ply-seat.c @@ -139,6 +139,8 @@ ply_seat_open (ply_seat_t *seat, seat->keyboard = ply_keyboard_new_for_terminal (seat->terminal); add_text_displays (seat); } + + ply_keyboard_watch_for_input (seat->keyboard); seat->keyboard_active = true; return true;