From cc49d5a714b09d79c4b371215e68cce3a20cd83d Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 24 May 2015 20:57:21 +0200 Subject: [PATCH] CShellWindow: disable not required screean saving on text paint --- src/gui/widget/shellwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/widget/shellwindow.cpp b/src/gui/widget/shellwindow.cpp index 2f304d774..5ed86d06c 100644 --- a/src/gui/widget/shellwindow.cpp +++ b/src/gui/widget/shellwindow.cpp @@ -92,6 +92,7 @@ void CShellWindow::exec() list lines; CBox textBoxPosition(frameBuffer->getScreenX(), frameBuffer->getScreenX(), w_shell, h_shell); textBox = new CTextBox(cmd.c_str(), font, CTextBox::BOTTOM, &textBoxPosition); + textBox->enableSaveScreen(false); struct pollfd fds; fds.fd = fileno(f); fds.events = POLLIN | POLLHUP | POLLERR;