From 2bd047c6a1c297649e7ae71e746dd5cb238c2a42 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 Origin commit data ------------------ Commit: https://github.com/neutrino-images/ni-neutrino/commit/cc49d5a714b09d79c4b371215e68cce3a20cd83d Author: Thilo Graf Date: 2015-05-24 (Sun, 24 May 2015) --- 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;