From: Ray Strode Date: Wed, 14 Oct 2009 15:29:55 +0000 (-0400) Subject: [text] Don't redraw views after password request X-Git-Tag: 0.8.0~156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d63a2aec8d3d155b6eaf664114c77c126ddbce9e;p=thirdparty%2Fplymouth.git [text] Don't redraw views after password request The text plugin doesn't have proper draw handlers at the moment. Drawing happens outside of the draw handlers, and the draw handlers only clear screen. Don't force draw_area calls because that clears any drawing. --- diff --git a/src/plugins/splash/text/plugin.c b/src/plugins/splash/text/plugin.c index bb09b22d..61dafa96 100644 --- a/src/plugins/splash/text/plugin.c +++ b/src/plugins/splash/text/plugin.c @@ -692,7 +692,6 @@ display_password (ply_boot_splash_plugin_t *plugin, show_password_prompt (plugin, prompt, bullets); - redraw_views (plugin); unpause_views (plugin); } @@ -712,7 +711,6 @@ display_question (ply_boot_splash_plugin_t *plugin, show_prompt (plugin, prompt, entry_text); - redraw_views (plugin); unpause_views (plugin); }