From cd7b23b0f43db92587de109b252496a2ee4b58c7 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 12 Dec 2010 14:51:26 +0000 Subject: [PATCH] (svn r21479) -Fix (r9563): Keep transparency for textual stuff in newspaper. --- src/widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widget.cpp b/src/widget.cpp index d1e9bea857..4f2c498f28 100644 --- a/src/widget.cpp +++ b/src/widget.cpp @@ -1779,7 +1779,7 @@ void NWidgetViewport::Draw(const Window *w) { if (this->disp_flags & ND_NO_TRANSPARENCY) { TransparencyOptionBits to_backup = _transparency_opt; - _transparency_opt = 0; // Disable all transparency + _transparency_opt &= (1 << TO_SIGNS) | (1 << TO_LOADING); // Disable all transparency, except textual stuff w->DrawViewport(); _transparency_opt = to_backup; } else {