]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Don't clear screen when tracing
authorRay Strode <rstrode@redhat.com>
Tue, 11 Nov 2008 19:22:36 +0000 (14:22 -0500)
committerRay Strode <rstrode@redhat.com>
Tue, 11 Nov 2008 19:22:36 +0000 (14:22 -0500)
src/libplybootsplash/ply-window.c

index 4afbb272ee2f40f5c1bd8934fc5384556546acae..e0222cde53cc00968993a0e283d9829430a324a2 100644 (file)
@@ -650,6 +650,9 @@ ply_window_set_text_cursor_position (ply_window_t *window,
 void
 ply_window_clear_screen (ply_window_t *window)
 {
+  if (ply_is_tracing ())
+    return;
+
   if (ply_frame_buffer_device_is_open (window->frame_buffer))
     ply_frame_buffer_fill_with_color (window->frame_buffer, NULL, 0.0, 0.0, 0.0, 1.0);