[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.
This commit is contained in:
Ray Strode 2009-10-14 11:29:55 -04:00
parent e669839d66
commit d63a2aec8d

View 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);
}