summaryrefslogtreecommitdiff
path: root/src/widget.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/widget.cpp')
-rw-r--r--src/widget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/widget.cpp b/src/widget.cpp
index d1e9bea85..4f2c498f2 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 {