diff options
author | Ray Strode <rstrode@redhat.com> | 2016-06-14 14:23:18 -0400 |
---|---|---|
committer | Ray Strode <rstrode@redhat.com> | 2016-06-14 14:23:18 -0400 |
commit | 2c7147ad098c07a3399edcef4c115e1ac728df3e (patch) | |
tree | da036100735f574b4d8c6ccba38dcd2dca784618 | |
parent | 375a65fff65d7011642fdc438765f820dd662d4d (diff) |
text: add view for new text displays
commit 74346ec268f609 tried to fix a case where views are
added after the text splash is shown. That commit inadvertently
removed the code that adds a view for a new text display.
This commit adds back the accidentaly excised line.
-rw-r--r-- | src/plugins/splash/text/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/splash/text/plugin.c b/src/plugins/splash/text/plugin.c index 1422e837..d935461e 100644 --- a/src/plugins/splash/text/plugin.c +++ b/src/plugins/splash/text/plugin.c @@ -471,6 +471,8 @@ add_text_display (ply_boot_splash_plugin_t *plugin, (ply_text_display_draw_handler_t) on_draw, view); + ply_list_append_data (plugin->views, view); + if (plugin->is_animating) view_start_animation (view); } |