From e46d65fb924621ebae2bee080c1ed85f79eddd54 Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Tue, 22 Nov 2016 10:44:50 +0100 Subject: [PATCH] CHintBox: fix missing shadow for popups Must be enabled with enum, bool has no effect. --- src/gui/widget/hintbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/widget/hintbox.cpp b/src/gui/widget/hintbox.cpp index 172419468..5709df99b 100644 --- a/src/gui/widget/hintbox.cpp +++ b/src/gui/widget/hintbox.cpp @@ -135,7 +135,7 @@ void CHintBox::init(const std::string& Text, const int& Width, const std::string hb_font = MSG_FONT; //enable shadow - shadow = true; + shadow = CC_SHADOW_ON; //disable disable header if no title has been defined if (ccw_caption.empty())