]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
seat: always add text displays when opening seat
authorRay Strode <rstrode@redhat.com>
Fri, 17 Jan 2014 17:51:24 +0000 (12:51 -0500)
committerRay Strode <rstrode@redhat.com>
Fri, 17 Jan 2014 19:19:38 +0000 (14:19 -0500)
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.

src/libply-splash-core/ply-seat.c

index 0900346bdaa5137497d1c5cc91871f75cb5db0d9..d9c7a2b37fef8a596c87d1ceebce975d351a0586 100644 (file)
@@ -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;