From: Ray Strode Date: Mon, 20 Oct 2008 20:51:35 +0000 (-0400) Subject: At exit do on_hide_splash not ply_boot_splash_hide X-Git-Tag: 0.6.0~64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ea15d24f3ee82aab3981c2516e09831a7176460c;p=thirdparty%2Fplymouth.git At exit do on_hide_splash not ply_boot_splash_hide Calling just ply_boot_splash_hide meant that the terminal wasn't getting reset properly causing tty1 to misbehave. --- diff --git a/src/main.c b/src/main.c index d37c1b01..f35178a3 100644 --- a/src/main.c +++ b/src/main.c @@ -373,7 +373,7 @@ on_quit (state_t *state, if (state->boot_splash != NULL) { if (!retain_splash) - ply_boot_splash_hide (state->boot_splash); + on_hide_splash (state); ply_boot_splash_free (state->boot_splash); state->boot_splash = NULL; }