From d63a2aec8d3d155b6eaf664114c77c126ddbce9e Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Wed, 14 Oct 2009 11:29:55 -0400 Subject: [PATCH] [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. --- src/plugins/splash/text/plugin.c | 2 -- 1 file changed, 2 deletions(-) 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); }