]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
[text] Don't redraw views after password request
authorRay Strode <rstrode@redhat.com>
Wed, 14 Oct 2009 15:29:55 +0000 (11:29 -0400)
committerRay Strode <rstrode@redhat.com>
Wed, 14 Oct 2009 15:32:03 +0000 (11:32 -0400)
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

index bb09b22d862bb3bedba49304b74b1511fb914818..61dafa969002f8c3aa0aca68324aea56d3656fc5 100644 (file)
@@ -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);
 }