fix(renderer): Remove superflous clear

This commit is contained in:
Michael Carlberg 2016-11-26 17:26:35 +01:00
parent 44f288742b
commit c4822b713f
1 changed files with 0 additions and 3 deletions

View File

@ -206,9 +206,6 @@ void renderer::flush(bool clear) {
right.width += m_bar.borders.at(edge::RIGHT).size;
right.height += m_bar.size.h;
m_log.trace("renderer: clear window contents");
m_connection.clear_area(false, m_window, 0, 0, m_bar.size.w, m_bar.size.h);
m_log.trace("renderer: copy pixmap (clear=%i)", clear);
m_connection.copy_area(m_pixmap, m_window, m_gcontexts.at(gc::FG), 0, 0, r.x, r.y, r.width, r.height);