mirror of
https://gitlab.freedesktop.org/plymouth/plymouth.git
synced 2026-04-26 20:40:41 +02:00
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:
parent
9e3324a465
commit
5d4b4d58d0
1 changed files with 8 additions and 2 deletions
10
src/main.c
10
src/main.c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue