Skip to content
Snippets Groups Projects
Commit efc99994 authored by Ray Strode's avatar Ray Strode
Browse files

[boot-splash] Force progress to 1.0 when quitting

This potentially allows themes to move their progress
bars to the end before quiting.
parent 6a7be5ab
No related branches found
Tags gst-plugins-base-0.11.90
No related merge requests found
......@@ -665,6 +665,12 @@ ply_boot_splash_become_idle (ply_boot_splash_t *splash,
{
assert (splash->idle_trigger == NULL);
if (splash->progress != NULL)
{
ply_progress_set_percentage (splash->progress, 1.0);
ply_boot_splash_update_progress (splash);
}
ply_trace ("telling splash to become idle");
if (splash->plugin_interface->become_idle == NULL)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment