summaryrefslogtreecommitdiff
path: root/src/gui/shoplistbox.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 15:29:46 +0100
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-03-27 15:29:46 +0100
commitaa6f1c46e78864d9900cdf8afb8bacb8c4ce4651 (patch)
tree595063263f824a8e1022cea9b951352191c6282e /src/gui/shoplistbox.cpp
parent3efa949fca06f9a1cad04ff7da8107096ed55044 (diff)
downloadMana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.gz
Mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.bz2
Mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.tar.xz
Mana-aa6f1c46e78864d9900cdf8afb8bacb8c4ce4651.zip
Removed all the static initializations of mAlpha
They happened before the configuration was initialized, so that didn't make any sense. It never showed up as a problem since the value is constantly set in the draw methods anyway.
Diffstat (limited to 'src/gui/shoplistbox.cpp')
-rw-r--r--src/gui/shoplistbox.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/shoplistbox.cpp b/src/gui/shoplistbox.cpp
index db39e82d..8801c51a 100644
--- a/src/gui/shoplistbox.cpp
+++ b/src/gui/shoplistbox.cpp
@@ -32,7 +32,7 @@
const int ITEM_ICON_SIZE = 32;
-float ShopListBox::mAlpha = config.getValue("guialpha", 0.8);
+float ShopListBox::mAlpha = 1.0;
ShopListBox::ShopListBox(gcn::ListModel *listModel):
ListBox(listModel),