summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2014-01-17 12:51:24 -0500
committerRay Strode <rstrode@redhat.com>2014-01-17 14:19:38 -0500
commit3d264547718db8c149f6f40cada035b1b02e7257 (patch)
treec85b953efd1798a388babbdcc13d30f930511e24
parent97100b17606099ff24257a690dbef1f32ffaff58 (diff)
seat: always add text displays when opening seat
At the moment we add pixel displays if we can, or text displays if we can't add pixel displays. We need to always add text displays, otherwise, the text splash won't work when explicitly configured by the user.
-rw-r--r--src/libply-splash-core/ply-seat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libply-splash-core/ply-seat.c b/src/libply-splash-core/ply-seat.c
index 0900346b..d9c7a2b3 100644
--- a/src/libply-splash-core/ply-seat.c
+++ b/src/libply-splash-core/ply-seat.c
@@ -137,8 +137,8 @@ ply_seat_open (ply_seat_t *seat,
else
{
seat->keyboard = ply_keyboard_new_for_terminal (seat->terminal);
- add_text_displays (seat);
}
+ add_text_displays (seat);
ply_keyboard_watch_for_input (seat->keyboard);
seat->keyboard_active = true;