From 2ea156e9331299b37bfd499bc5e89032ac016021 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 4 Jan 2016 21:47:14 +0100 Subject: [PATCH] CCDraw: remove hide() from destructor. hide() should be called explicit if required. This should fix unintentionally call of hide() if objects used on stack. --- src/gui/components/cc_draw.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/gui/components/cc_draw.cpp b/src/gui/components/cc_draw.cpp index 8433253a7..a43e0e461 100644 --- a/src/gui/components/cc_draw.cpp +++ b/src/gui/components/cc_draw.cpp @@ -76,7 +76,6 @@ CCDraw::CCDraw() : COSDFader(g_settings.theme.menu_Content_alpha) CCDraw::~CCDraw() { - hide(); clearFbData(); }