From dec5ff2a8991a5ba4a8e0732b80393c7ff2f72ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89milie=20Feral?= Date: Thu, 15 Sep 2016 10:53:18 +0200 Subject: [PATCH] [escher] clean double call to redraw in container Change-Id: I85f9d37278dc4e51f8995eba64e6769f6ca71988 --- escher/src/container.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/escher/src/container.cpp b/escher/src/container.cpp index 475c1704a..0d4e5b7c2 100644 --- a/escher/src/container.cpp +++ b/escher/src/container.cpp @@ -9,7 +9,7 @@ Container::Container() : void Container::switchTo(App * app) { m_activeApp = app; m_activeApp->setWindow(&m_window); - m_window.redraw(); + //m_window.redraw(); } App * Container::activeApp() {