From 467e888458c8804cd2852715e775088f8cb2cf4c Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Mon, 4 Jan 2016 22:47:01 +0100 Subject: [PATCH] CShellWindow: use current window color for result button --- src/gui/widget/shellwindow.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gui/widget/shellwindow.cpp b/src/gui/widget/shellwindow.cpp index a2cb0165b..60eab7cb3 100644 --- a/src/gui/widget/shellwindow.cpp +++ b/src/gui/widget/shellwindow.cpp @@ -251,7 +251,8 @@ void CShellWindow::showResult() int xpos = frameBuffer->getScreenWidth() - b_width; int ypos = frameBuffer->getScreenHeight() - b_height; CComponentsButton btn(xpos, ypos, b_width, b_height, LOCALE_MESSAGEBOX_BACK, NEUTRINO_ICON_BUTTON_OKAY, NULL, true, true); - btn.paint(); + btn.setColorBody(COL_MENUCONTENT_PLUS_0); + btn.paint(false); } neutrino_msg_t msg;