Initialise state->showing_details at show_splash

Only effects us when running without rhgb in the kernel line, by having to
press Esc twice to get the default splash.
This commit is contained in:
Charlie Brej 2009-03-11 10:53:07 +00:00
parent 9e3324a465
commit 5d4b4d58d0

View file

@ -565,9 +565,15 @@ on_show_splash (state_t *state)
}
if (plymouth_should_show_default_splash (state))
show_default_splash (state);
{
show_default_splash (state);
state->showing_details = false;
}
else
show_detailed_splash (state);
{
show_detailed_splash (state);
state->showing_details = true;
}
}
static void