From 4587ac4c31521deaa04c2471b89d9156c4918040 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Tue, 5 Jun 2012 13:03:06 -0400 Subject: [PATCH] Revert "main: force frame-buffer plugin at shutdown" This reverts commit 3f14f2700e031e6fbb674ebb1ab86a73b4469dc8. Forcing frame-buffer plugin makes multi-monitor look really bad. Instead, depend on the init system to make sure we stay alive until the end. --- src/main.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/main.c b/src/main.c index db0ac319..07390885 100644 --- a/src/main.c +++ b/src/main.c @@ -1498,11 +1498,7 @@ add_default_displays_and_keyboard (state_t *state) state->local_console_terminal = ply_terminal_new (state->default_tty); - /* force frame-buffer plugin for shutdown so it sticks around after getting killed */ - if (state->mode == PLY_MODE_SHUTDOWN) - renderer = ply_renderer_new (PLYMOUTH_PLUGIN_PATH "renderers/frame-buffer.so", NULL, state->local_console_terminal); - else - renderer = ply_renderer_new (NULL, NULL, state->local_console_terminal); + renderer = ply_renderer_new (NULL, NULL, state->local_console_terminal); if (!ply_renderer_open (renderer)) { -- 2.47.3